修改程序的运行目录
提示:该方法适用于你想将程序转移到服务器其它文件夹中运行。

比如我需要将oneacg程序从/root转移到/home目录。

使用命令:

#进入到程序原路径
cd /root/oneacg
#停止程序
npm stop
#移动程序,/root/oneacg为转移前运行目录,/home为即将转移的目录
mv /root/oneacg /home
#进入到程序新路径
cd /home/oneacg
#启动程序
npm start