1、Jboss停止命令:
./jboss-cli.sh --connect command=:shutdown
2、Jboss启动命令
nohup ./standalone.sh &
说明:nohup <程序名> &
3、查看输出情况:
tail -1000 nohup.out
说明:tail 参数 文件
4、查看Jboss进程
ps -ef |grep jboss
说明:查找所有“jboss”相关进程
5、强制结束进程
kill -9 4775
说明:“4775”为某个进程ID
6、查看命令历史使用情况
history
说明:查询出命令结果列表后,“!”+"命令序号" 可再次执行命令。
7、Nginx启动
nginx -c /nginx-1.12.1/conf/nginx.conf
说明:nginx -c “nginx部署后,nginx.conf文件位置”
8、关闭防火墙(重启失效)
service iptables stop
说明:项目部署启动后,PC机不能访问,可能是防火墙未关闭。