建立服務指令碼
[root@mini-like nexus]# ln -s /usr/share/nexus/bin/nexus /etc/init.d/nexus
然後,就可以通過該指令碼對服務進行管理了:
/etc/init.d/nexus start
/etc/init.d/nexus stop
服務啟動問題解決
註冊為自啟動服務
上面的方法完成了用指令碼管理nginx服務的功能,但是還是不太方便,比如要設定nexus開機啟動等。這時可以使用chkconfig來設定。
先將nexus服務加入chkconfig管理列表:
chkconfig --add /etc/init.d/nexus
加完這個之後,就可以使用service對nexus進行啟動,重啟等操作了。
service nexus start
service nexus stop
設定終端模式開機啟動:
chkconfig --level 35 nexus on
Linux下註冊Apache為系統服務
vi etc rc.d rc.local 增加 usr local httpd bin apachectl start 2 註冊為service 找到 bin sh 另起一行,增加 chkconfig 35 70 30 其中所增加的第二行中三個數字第乙個表示在執行級別3和5下啟動apache,第 二...
註冊Tomcat服務為系統服務
將解壓版的tomcat服務註冊為系統服務之後,就不用每次啟動機器之後都要手動去啟動 startup.bat 就方便多了,下面就是具體步驟 以我的機器為例,我的tomcat安裝在 d tomcat6.0.24 你的目錄可能與我不同,但也是類似的 我的tomcat路徑圖 1.先用記事本等開啟 d tom...
註冊Tomcat服務為系統服務
將解壓版的tomcat服務註冊為系統服務之後,就不用每次啟動機器之後都要手動去啟動 startup.bat 就方便多了,下面就是具體步驟 以我的機器為例,我的tomcat安裝在 d tomcat6.0.24 你的目錄可能與我不同,但也是類似的 我的tomcat路徑圖 1.先用記事本等開啟 d tom...