管理http服務的指令碼

2021-09-06 18:41:27 字數 2013 閱讀 4649

因為老是須要又一次安裝系統,重一次都要又一次設定http服務的啟動指令碼。麻煩,所以這一次就把指令碼備份出來。

## 停止php-fpm服務

do_stop_phpfpm() ` > /dev/null 2>&1

if [ $? -eq 0 ];then

show_success

else

show_failed

fiecho ""

}## 輸出ok

show_success()

## 輸出no

show_failed()

## 啟動php-fpm服務

do_start_phpfpm()

## nignx又一次載入設定

do_reload_nginx()

## 啟動nginx服務

do_start_nginx()

## 停止nginx服務

作業HTTP服務的監控指令碼

bin bash root uid 0 if uid ne root uid then echo error you should be root to run this script exit 1 fi while true do echo e 033 31m start 啟動apache服務 0...

python web服務管理指令碼

1.python path為python解析器路徑,預設已做python3對映 2.log index為日誌編號,用以記錄啟動次數及提供每次啟動分不同日誌功能 暫未啟用 3.port選擇不衝突 可使用的埠 4.max process最大程序數一般小於硬體核數 管理指令碼需與服務入口平級 python...

Memcache 服務管理指令碼

自定義指令碼將memcached作為系統服務啟動以及開機啟動。在 etc init.d 目錄下新建乙個指令碼,名稱為 memcached。內容如下 vi etc init.d memcached bin bash description memcached service daemon proces...