1.
使用root
賬號進啟動配置資料夾
/etc/init.d
[root@localhost init.d]# cd/etc/init.d
2.
建立指令碼檔案
start_ps
(這個檔名可以任意),並編輯
#!/bin/bash
cd /home/nathan/exe_file/installation_locateserver
./run.sh
3.
修改start_ps
的許可權
[root@localhost init.d]# chmod 755start_ps
不同的執行級定義如下
# 0 –
停機(千萬不能把
initdefault
設定為0
)# 1 –
單使用者模式
# s init s = init 1
# 2 –
多使用者,沒有
nfs
# 3 –
完全多使用者模式
(標準的執行級
) # 4 –
沒有用到
# 5 – x11
多使用者圖形模式(
xwindow)
# 6 –
重新啟動
(千萬不要把
initdefault
設定為6 )
1.
檢視執行級別
[root@localhost init.d]# runlevel
n 52.
配置n3
的啟動
[root@localhost rc3.d]# cd/etc/rc3.d
[root@localhost rc3.d]# ln -s/etc/init.d/start_ps s99ps
3.
配置n5
的啟動
[root@localhost rc3.d]# cd /etc/rc5.d
[root@localhost rc3.d]# ln -s/etc/init.d/start_ps s99ps
6 linux下的幫助命令
內建命令實際上是 shell 程式的一部分,其中包含的是一些比較簡單的 linux 系統命令,這些命令是寫在bash原始碼的builtins裡面的,並由 shell 程式識別並在 shell 程式內部完成執行,通常在 linux 系統載入執行時 shell 就被載入並駐留在系統記憶體中。而且解析內部...
linux下通過指令碼實現自動重啟程式
出處不詳,網上摘錄。無論什麼程式都不可能完美無缺,理論上,任何程式都有core dump的一天,正式運營的程式,尤其是伺服器程式,一旦core dump,後果不堪設想,有過伺服器開發經驗的朋友,一定都經歷過深夜美夢中,被 驚醒的慘痛經歷,手忙腳亂把伺服器重新啟動,第二天上班還要被老闆一頓狠批。所以,...
linux下通過指令碼實現自動重啟程式
無論什麼程式都不可能完美無缺,理論上,任何程式都有co程式設計客棧re dump的一天,正式運營的程式,尤其是伺服器程式,一旦core dump,後果不堪設想,有過伺服器開發經驗的朋友,一定都經歷過深夜美夢中,被 驚醒的慘痛經歷,手忙腳亂把伺服器重新啟動,第二天上班還要被老闆一頓狠批。所以,程式發生...