启动服务:(进入根目录)
nohup java -jar demo-0.0.1-SNAPSHOT.jar --spring.profiles.active=prod &
查看启动详情日志:
tail -f nohup.out
查看nginx安装目录:
nginx -t
查看nginx启动情况:
nginx
查看80端口被占用进程
netstat -ntlp|grep 80
解压:
tar -zxvf xxx.tar.gz
卸载nginx
https://blog.csdn.net/kzhzhang/article/details/124607674
安装:
<u>https://blog.csdn.net/kzhzhang/article/details/121375831</u>
启动nginx:
.进入该路径:cd /usr/local/nginx/sbin
启动nginx 命令: ./nginx 出现下面启动成功
问题描述:
nginx服务开启后无法通过web进行访问
解决方法:
首先:开启 web 端口
- firewall-cmd --permanent --add-port=80/tcp
重启 firewall
- firewall-cmd --reload