しゅろの葉メモ

メモ帳の代わりに。

IRCD-Hybrid

インストール

今回はCentOS 6.3にインストールします。

[root@localhost ~]# yum --enablerepo=epel install ircd-hybrid

設定

最小限設定のサンプルファイルをコピーしてくる。

[root@localhost ~]# mv /etc/ircd/ircd.conf /etc/ircd/ircd.conf.back
[root@localhost ~]# cp /usr/share/doc/ircd-hybrid-7.2.3/simple.conf /etc/ircd/ircd.conf


設定ファイルを編集する。

serverinfo {
        name = "irc.xxxxx.xxx";
        sid = "392";
        description = "MyIRC Server";
        hub = no;
};

administrator {
        description = "MyIRC Server";
        name = "Palm Leaves";
        email = "xxxxxx@xxx.xxx";
};

起動

起動する

[root@localhost ~]# service ircd start


自動起動設定

[root@localhost ~]# chkconfig ircd on


IRCクライアントから無事繋がりました。