Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 인공지능
- hacking
- 파이썬
- Javascript
- Web
- Shellcode
- hackerschool
- 챗GPT
- webhacking
- hackthissite
- flask
- Scala
- php
- 백엔드
- 경제
- deep learning
- 딥러닝
- 웹해킹
- backend
- BOF
- Python
- c
- Linux
- 리눅스
- c++
- 러닝 스칼라
- mysql
- 러닝스칼라
- ChatGPT
- BOF 원정대
Archives
- Today
- Total
jam 블로그
[Qmail] Centos 6.X에서 Qmail 동작하지 않을 시. 본문
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
'시스템 > 리눅스' 카테고리의 다른 글
[리눅스] Hacking : The art of exploitation live CD 부팅하기 (0) | 2014.03.31 |
---|---|
[linux] console에서 sftp 인증서로 로그인하기 (0) | 2013.08.02 |
[lighttpd]NASN 321에서 lighttp에 심볼릭링크 관련 설정하기 (0) | 2013.02.12 |
[페도라] fedora 15버전에서 runlevel 변경법 (0) | 2011.10.11 |
[svn] 빠진 파일 add 시키기 (0) | 2011.04.11 |
Comments