サーバ構築 3日目 (sendmail, chkconfig)

初日みたいに丸1日作業というのは、当分なさそうな雰囲気…。
なので、細かい作業をまとめて記録って感じになるかな。

今回は必要ないサービスは止めておけ!というお話。

不要なデーモンを止める!

Samba の設定を少し変更 -> 再起動したら、起動がものすごく遅い(;゜Д゜)

仕方なく直接モニター繋いでみると、OS起動中?デーモン起動中?のとこで sendmail とか言うデーモンが、名前解決?しようと頑張ってました…。
そこら辺は勉強不足でよく分からないのですが、取り敢えず、「不要なデーモンは止めとけ!」ということらしく、 CentOS 5.1 インストール後の設定(不要なサービスを止める) を参考に、不要なデーモンを起動しないように設定。

[root@centos ~] # chkconfig nfslock off
[root@centos ~] # chkconfig portmap off
[root@centos ~] # chkconfig bluetooth off
[root@centos ~] # chkconfig ip6tables off
[root@centos ~] # chkconfig auditd off
[root@centos ~] # chkconfig mcstrans off
[root@centos ~] # chkconfig restorecond off
[root@centos ~] # chkconfig cups off
[root@centos ~] # chkconfig mdmonitor off
[root@centos ~] # chkconfig gpm off
[root@centos ~] # chkconfig pcscd off

んで、再起動。

[root@centos ~] # chkconfig --list | grep 3:on
acpid           0:off   1:off   2:on    3:on    4:on    5:on    6:off
anacron         0:off   1:off   2:on    3:on    4:on    5:on    6:off
apmd            0:off   1:off   2:on    3:on    4:on    5:on    6:off
atd             0:off   1:off   2:off   3:on    4:on    5:on    6:off
autofs          0:off   1:off   2:off   3:on    4:on    5:on    6:off
avahi-daemon    0:off   1:off   2:off   3:on    4:on    5:on    6:off
cpuspeed        0:off   1:on    2:on    3:on    4:on    5:on    6:off
crond           0:off   1:off   2:on    3:on    4:on    5:on    6:off
haldaemon       0:off   1:off   2:off   3:on    4:on    5:on    6:off
hidd            0:off   1:off   2:on    3:on    4:on    5:on    6:off
iptables        0:off   1:off   2:on    3:on    4:on    5:on    6:off
irqbalance      0:off   1:off   2:on    3:on    4:on    5:on    6:off
kudzu           0:off   1:off   2:off   3:on    4:on    5:on    6:off
lvm2-monitor    0:off   1:on    2:on    3:on    4:on    5:on    6:off
messagebus      0:off   1:off   2:off   3:on    4:on    5:on    6:off
microcode_ctl   0:off   1:off   2:on    3:on    4:on    5:on    6:off
netfs           0:off   1:off   2:off   3:on    4:on    5:on    6:off
network         0:off   1:off   2:on    3:on    4:on    5:on    6:off
rawdevices      0:off   1:off   2:off   3:on    4:on    5:on    6:off
readahead_early 0:off   1:off   2:on    3:on    4:on    5:on    6:off
rpcgssd         0:off   1:off   2:off   3:on    4:on    5:on    6:off
rpcidmapd       0:off   1:off   2:off   3:on    4:on    5:on    6:off
smartd          0:off   1:off   2:on    3:on    4:on    5:on    6:off
smb             0:off   1:off   2:on    3:on    4:on    5:on    6:off
sshd            0:off   1:off   2:on    3:on    4:on    5:on    6:off
syslog          0:off   1:off   2:on    3:on    4:on    5:on    6:off
xfs             0:off   1:off   2:on    3:on    4:on    5:on    6:off
xinetd          0:off   1:off   2:off   3:on    4:on    5:on    6:off
yum-cron        0:off   1:off   2:on    3:on    4:on    5:on    6:off

今のところ起動してるデーモンはこんな感じ。まだまだ、不要なものもあるだろうけど、使ってるか使ってないか曖昧なものは残してます。

先週の作業はこんなもんかな。 他にあったら便利な機能?サーバ?無いかなーと模索中…なんか無いかなー。

Comments