centos7 maven 私服自动启动

用户头像
kcnf
关注
发布于: 2020 年 05 月 06 日
centos7 maven私服自动启动

自动启动

  • 一般我们系统都避免不了的重启,常见的持续环境工具又多,免不了增加一些日常额外工作

  • 配置如下

  • 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=RUNASUSER=root

Environment=PATH=//usr/local/lab/jdk1.8.0241/bin://usr/local/lab/jdk1.8.0241/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](https://kcnf-open.gitee.io/wiki/20200505/20200505232646113.jpg)

  • reboot

参考网址

  • https://my.oschina.net/lujunan/blog/2993075

  • http://bcxw.net/article/15.html



用户头像

kcnf

关注

还未添加个人签名 2018.03.21 加入

还未添加个人简介

评论

发布
暂无评论
centos7 maven私服自动启动