CentOS7配置nexus开机自启动

新建nexus启动脚本

进入/etc/init.d目录,新建脚本文件nexus

// 进入/etc/init.d
[root@linux_maven etc]# cd /etc/init.d/
 
// 新建脚本文件nexus
[root@linux_maven init.d]# vim nexus

脚本内容:

#!/bin/bash
#chkconfig:2345 20 90
#description:nexus
#processname:nexus
 
export JAVA_HOME=/root/apps/jdk1.8/
 
case $1 in

        start) su root /home/nexus/nexus-3.24.0-02/bin/nexus start;;

        stop) su root /home/nexus/nexus-3.24.0-02/bin/nexus stop;;

        status) su root /home/nexus/nexus-3.24.0-02/bin/nexus status;;

        restart) su root /home/nexus/nexus-3.24.0-02/bin/nexus restart;;

        dump) su root /home/nexus/nexus-3.24.0-02/bin/nexus dump;;

        console) su root /home/nexus/nexus-3.24.0-02/bin/nexus console;;

        *) echo "Usage: nexus {start|stop|run|run-redirect|status|restart|force-reload}"

esac

设置脚本权限

[root@linux_maven init.d]# chmod +x /etc/init.d/nexus 

使用service命令使用nexus

[root@linux_maven init.d]# service nexus status

WARNING: ************************************************************

WARNING: Detected execution as "root" user.  This is NOT recommended!

WARNING: ************************************************************

nexus is running.

添加到开机启动

[root@linux_maven init.d]# chkconfig nexus on

查看nexus开机启动

[root@linux_maven ~]# chkconfig --list nexus

 

Note: This output shows SysV services only and does not include native

      systemd services. SysV configuration data might be overridden by native

      systemd configuration.

 

      If you want to list systemd services use 'systemctl list-unit-files'.

      To see services enabled on particular target use

      'systemctl list-dependencies [target]'.

 

nexus           0:off   1:off   2:on    3:on    4:on    5:on    6:off

如果无法访问,检查一下防火墙端口是否开放。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

xiegwei

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值