centos7 maven私服自动启动

拜拜、爱过 提交于 2020-05-06 01:03:46

自动启动

  • 一般我们系统都避免不了的重启,常见的持续环境工具又多,免不了增加一些日常额外工作
  • 配置如下
    • touch /usr/lib/systemd/system/nexus.service
    • vi /usr/lib/systemd/system/nexus.service
    • 脚本如下
    [Unit]
    Description=nexus service
    After=network.target
    
    [Service]
    Type=forking
    Environment=RUN_AS_USER=root
    Environment=PATH=//usr/local/lab/jdk1.8.0_241/bin://usr/local/lab/jdk1.8.0_241/jre/bin://usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/root/bin:/root/bin
    ExecStart=/usr/local/lab/nexus-3.6.0-02/bin/nexus start
    ExecStop=/usr/local/lab/nexus-3.6.0-02/bin/bin/nexus stop
    User=root
    Restart=on-abort
    [Install]
    WantedBy=multi-user.target
    
    • chmod a+x nexus.service
    • systemctl daemon-reload
    • systemctl start nexus
    • systemctl status nexus.service
    • avatar
    • reboot

参考网址

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!