第 37 章 News Group (innd)

简介:

37.1. Ubuntu

过程 37.1. innd

  1. debian 安装

    sudo apt-get install inn2
    				
  2. 配置

    1. inn.conf

      cd /etc/news/
      chown news.news inn.conf
      domain:                 example.org
      server:                 localhost
      fromhost:               news.example.org
      moderatormailer:        openunix@163.com
      			    	
    2. storage.conf

      vi storage.conf
      method tradspool {
              newsgroups: *
              class: 0
      }
      			    	
    3. readers.conf

      vi readers.conf
      auth "local" {
              hosts: "*"
              default: "*"
      }
      
      access "local" {
              users: "*"
              newsgroups: "*"
      }
      			    	
  3. start

    /etc/init.d/innd start

    service innd start
    Starting INND system:                                      [  OK  ]
    				

    sudo ufw allow nntp




原文出处:Netkiller 系列 手札
本文作者:陈景峯
转载请与作者联系,同时请务必标明文章原始出处和作者信息及本声明。

目录
相关文章
|
6月前
|
开发框架 .NET 编译器
C#-Group By 的使用
group by 是linq中的分组功能,能通过给定的字段对数据集进行分组,得到分组后的结果。
126 0
|
11月前
|
SQL 关系型数据库 MySQL
only_full_group_by问题而引发的对group by的深入思考
only_full_group_by问题而引发的对group by的深入思考
104 0
group by+group_concat解决的小问题
group by+group_concat解决的小问题
77 0
|
SQL
ORDER BY && GROUP BY
ORDER BY && GROUP BY
61 0
ORDER BY && GROUP BY
group by
group by
66 0
|
SQL
十、GROUP BY 和 HAVING 的使用
十、GROUP BY 和 HAVING 的使用
240 0
|
SQL 关系型数据库 数据挖掘
你真的懂使用Group by?
你真的懂使用Group by?
461 0
你真的懂使用Group by?
My Appointment - Belonging to me, Search by team, Search by group
My Appointment - Belonging to me, Search by team, Search by group
1109. Group Photo (25)
#include #include #include #include #include #include using namespace std; struct node{ string name; ...
837 0