jam 블로그

[Qmail] Centos 6.X에서 Qmail 동작하지 않을 시. 본문

시스템/리눅스

[Qmail] Centos 6.X에서 Qmail 동작하지 않을 시.

kid1412 2013. 2. 20. 20:49
728x90

Centos 6.X에 Qmail을 올렸을 시 동작하지 않는다면,

예를 들어, telnet localhost 25에 접속이 되지 않는다면,

먼저 ps aux | grep svscan으로 하여 프로세스에 올라와 있는지 확인합니다.

올라오지 않았을 경우 다음과 같이 작업해 주시면 됩니다.

Centos 5.X 이하

[root@localhost]# echo "SV:345:respawn:/command/svscanboot" >> /etc/inittab
[root@localhost]# pkill -1 init

Centos 6.X 이상

[root@localhost]# vi /etc/init/svscan.conf
start on runlevel [2345]
stop on runlevel [S016]

respawn
exec /command/svscanboot
[root@localhost]# initctl start svscan

 

위와 같이 하시면 됩니다. 

출처 : qmail.kldp.net/phpbb/viewtopic.php?f=3&t=8229

참고용 : http://blog.daum.net/donfig/3163915

 

Comments