当前位置: 技术问答>linux和unix
请教为什么crond进程会占用80端口
来源: 互联网 发布时间:2016-12-25
本文导语: [root@chenhong agent ]# netstat -napl | grep 80 tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN 19111/crond 我是通过/sbin/service crond restart 启动的 请问能...
[root@chenhong agent ]# netstat -napl | grep 80
tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN 19111/crond
我是通过/sbin/service crond restart 启动的
请问能不占用80端口吗?因为80端口我还有其他用处
tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN 19111/crond
我是通过/sbin/service crond restart 启动的
请问能不占用80端口吗?因为80端口我还有其他用处
|
cron本身并不需要监听任何端口。要么是你的父进程是从80端口启动的,要么是你的cron task中有占用80端口的,你才会看到上面的情况。
|
问题原因猜测:cron task 中的那个80服务应该没有从cron启动中独立出现,即没有创建一个独立的后台程序
建议nohup试试
建议nohup试试