linux部署若依(ruoyi-cloud)项目常用命令
1.查看进程
ps -aux | grep java
查看某端口占用的线程: netstat -nlp | grep 端口号
netstat -nlp | grep :8084
查看某jar包的进程号
ps -ef | grep xxx.jar
2.杀死进程
kill -9 24343
3.启动jar包
nohup java -jar shareniu.jar &
nohup 意思是不挂断运行命令,当账户退出或终端关闭时,程序仍然运行.且所有输出被重定向到nohup.out的文件中
4.nacos启动
Linux/Unix/Mac
启动命令(standalone代表着单机模式运行,非集群模式):
sh startup.sh -m standalone
如果您使用的是ubuntu系统,或者运行脚本报错提示[[符号找不到,可尝试如下运行:
bash startup.sh -m standalone
Windows
启动命令(standalone代表着单机模式运行,非集群模式):
startup.cmd -m standalone
5.关闭nacos服务器
Linux/Unix/Mac
sh shutdown.sh
Windows
shutdown.cmd
或者双击shutdown.cmd运行文件。
6.前端打包命令
npm run build:prod
本文原创,转载必追究版权。