Centos 7 nexus起動

1572 ワード

1、プロファイルの変更、/usr/local/nexus-2.14.9-01/bin/jsw/conf
​#        ,           
# Set the JVM executable
# (modify this to absolute path if you need a Java that is not on the OS path)
#wrapper.java.command=java
wrapper.java.command=/java/jdk/jdk1.8/bin/java

​

2、/etc/init.d/下nexusスクリプトの作成
#!/bin/sh     
#chkconfig:2345 20 90      
#description:nexus      
#processname:nexus  
    
export JAVA_HOME=/java/jdk/jdk1.8
  
case $1 in      
        start) su root /usr/local/nexus-2.14.9-01/bin/nexus start;;      
        stop) su root /usr/local/nexus-2.14.9-01/bin/nexus stop;;      
        status) su root /usr/local/nexus-2.14.9-01/bin/nexus status;;      
        restart) su root /usr/local/nexus-2.14.9-01/bin/nexus restart;;      
        dump) su root /usr/local/nexus-2.14.9-01/bin/nexus dump ;;   
        console) su root /usr/local/nexus-2.14.9-01/bin/nexus console ;;           
        *) echo "require console | start | stop | restart | status | dump " ;;      
esac

3、実行可能権限を加える
chmod +x nexus

4、POSTサービスに加入する
chkconfig --add nexus

5、POSTサービスに加入しているかどうかを確認する
[root@localhost init.d]# chkconfig --list

mysqld         	0:off	1:off	2:on	3:on	4:on	5:on	6:off
netconsole     	0:off	1:off	2:off	3:off	4:off	5:off	6:off
network        	0:off	1:off	2:on	3:on	4:on	5:on	6:off
nexus          	0:off	1:off	2:on	3:on	4:on	5:on	6:off
redisd         	0:off	1:off	2:on	3:on	4:on	5:on	6:off

6、サービスnexus startでサービスを開始できます