溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

打開php服務(wù)的方法

發(fā)布時(shí)間:2020-08-19 15:03:53 來源:億速云 閱讀:262 作者:小新 欄目:編程語言

這篇文章將為大家詳細(xì)講解有關(guān)打開php服務(wù)的方法,小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。

如何打開php服務(wù)?

安裝完php,使用chkconfig命令來查看php-fpm服務(wù)是否開啟,如果沒有開啟

1.      在/etc/init.d/目錄下創(chuàng)建腳本php-fpm

vim/etc/init.d/php-fpm

2.      編寫腳本內(nèi)容(將一下復(fù)制進(jìn)去相應(yīng)改動(dòng)安裝路徑)

#!/bin/sh
     #
     # php-fpm - this script starts and stops the php-fpm daemin
     #
     # chkconfig: - 85 15
     # processname: php-fpm
     # config:      /usr/local/php/etc/php-fpm.conf
     set -e
     PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
     DESC="php-fpm daemon"
     NAME=php-fpm
     DAEMON=/usr/local/php/sbin/$NAME                 //這里改成之前的安裝目錄
     CONFIGFILE=/usr/local/php/etc/php-fpm.conf      //這里改成之前的安裝目錄
     PIDFILE=/usr/local/php/var/run/$NAME.pid         //這里改成之前的安裝目錄
     SCRIPTNAME=/etc/init.d/$NAME                         //這里改成之前的安裝目錄    
     # If the daemon file is not found, terminate the script.
     test -x $DAEMON || exit 0
     d_start(){
         $DAEMON -y $CONFIGFILE || echo -n " already running"
     }
     d_stop(){
         kill -QUIT `cat $PIDFILE` || echo -n " no running"
     }
     d_reload(){
         kill -HUP `cat $PIDFILE` || echo -n " could notreload"
     }
     case "$1" in
         start)
             echo -n "Starting $DESC: $NAME"
             d_start
             echo "."
             ;;
         stop)
             echo -n "Stopping $DESC: $NAME"
             d_stop
             echo "."
             ;;
         reload)
             echo -n "Reloading $DESCconfiguration..."
             d_reload
             echo "Reloaded."
             ;;
         restart)
             echo -n "Restarting $DESC: $NAME"
             d_stop
             # Sleep for two seconds before startingagain, this should give the nginx daemon some time to perform a graceful stop
             sleep 2
             d_start
             echo "."
             ;;
         *)
             echo "Usage: $SCRIPTNAME{start|stop|restart|force-reload)" >&2
             exit 3
             ;;
     esac
     exit 0

最后:wq退出保存;

3.      更改腳本權(quán)限

chmod775 /etc.init.d/php-fpm

4.      設(shè)置開機(jī)啟動(dòng)

chkconfigphp-fpm on

可以用命令chkconfig查看開機(jī)服務(wù)列表。

更多PHP相關(guān)知識(shí),請(qǐng)?jiān)L問億速云!

關(guān)于打開php服務(wù)的方法就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

php
AI