美文网首页
linux命令服务

linux命令服务

作者: 无花无酒_3cd3 | 来源:发表于2020-06-23 15:14 被阅读0次
    source  /etc/profile      //刷新配置文件
    npm  install --unsafe-perm   //没有权限 ,添加 --unsafe-perm 参数
    npm  run build:sit
    scp -r /root/.jenkins/workspace/com_platform_web/dist  root@10.19.106.214:/u02/webapps     //拷贝文件从一个目录到另一个目录
    ssh  root@10.19.106.214  sh<<EOF   //使用“ssh root@服务器IP”连接到服务器。
    source  /etc/profile
    ps -ef|grep http-server | grep 8089 | grep -v grep | awk ‘{print\$2}’| xargs kill -9 2>/dev/null
    http-server  -p  8089 /home/baseuser/ >>/home/baseuser/front/access.log & EOF
    

    ssh解释

    ps -ef | grep 解释

    awk ‘{print$2}’ ,打印,命令
    杀掉某个进场
    https://www.cnblogs.com/shanheyongmu/p/6001098.html

    npm命令启动http-server服务时指定端口https://blog.csdn.net/ithanmang/article/details/88375259

    相关文章

      网友评论

          本文标题:linux命令服务

          本文链接:https://www.haomeiwen.com/subject/zzrhfktx.html