-
netstat -ntlp //查看当前所有tcp端口·
netstat -ntulp |grep 80 //查看所有80端口使用情况·
-
ps -ef | grep //查看进程号
ps命令将某个进程显示出来grep命令是查找- 中间的
|是管道命令 是指ps命令与grep同时执行 - 例如:
ps -ef | grep comcat
-
nginx 启动、重启、停止(进入nginx安装目录sbin)
- 启动
./nginx - 重启
./nginx -s reload - 判断配置文件是否正确
./nginx -t - 停止
- 从容停止 kill -QUIT 主进程号
- 快速停止 kill -TERM 主进程号
- 强制停止 kill -9 nginx
-
apache 启动、重启、停止(进入apache安装目录bin)
- 启动
apachectl start apaceh - 重启
apachectl restart - 停止
apachectl stop
- 启动
-
comcat (进入到tomcat安装的目录下,bin目录)
- 启动
./startup.sh - 停止
./shutdown.sh
- 启动
















