博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
nginx、php-fpm启动脚本详解
阅读量:2306 次
发布时间:2019-05-09

本文共 3191 字,大约阅读时间需要 10 分钟。

php-fpm启动脚本

#!/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.confset -ePATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/binDESC="php-fpm daemon"NAME=php-fpmDAEMON=/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 0d_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 not reload"}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 $DESC configuration..."       d_reload       echo "Reloaded."       ;;   restart)       echo -n "Restarting $DESC: $NAME"       d_stop       # Sleep for two seconds before starting again, 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       ;;esacexit 0

nginx启动脚本

#!/bin/sh # # nginx - this script starts and stops the nginx daemon # # chkconfig: - 85 15 # description: Nginx is an HTTP(S) server, HTTP(S) reverse # proxy and IMAP/POP3 proxy server # processname: nginx # chkconfig: 2345 90 91 # description: nginx web server# processname: nginx# config: /usr/local/nginx/conf/nginx.conf# pidfile: /opt/nginx/nginx.pid# Source function library.. /etc/init.d/functions# Source networking configuration.. /etc/sysconfig/networkif [ -f /etc/sysconfig/nginx ];then. /etc/sysconfig/nginxfi# Check that networking is up. [ "$NETWORKING" = "no" ] && exit 0nginx="/usr/local/nginx/sbin/nginx"prog=$(basename $nginx)NGINX_CONF_FILE="/usr/local/nginx/conf/nginx.conf"[ -f /etc/sysconfig/nginx ] && . /etc/sysconfig/nginxlockfile=/var/lock/subsys/nginxstart() {[ -x $nginx ] || exit 5[ -f $NGINX_CONF_FILE ] || exit 6echo -n $"Starting $prog: " daemon $nginx #-c $NGINX_CONF_FILE retval=$?echo [ $retval -eq 0 ] && touch $lockfilereturn $retval}stop() {echo -n $"Stopping $prog: " killproc $prog -QUITretval=$?echo [ $retval -eq 0 ] && rm -f $lockfilereturn $retvalkillall -9 nginx}restart() {configtest || return $?stopsleep 1start}reload() {configtest || return $?echo -n $"Reloading $prog: " killproc $nginx -HUPRETVAL=$?echo }force_reload() {restart}configtest() {$nginx -t #-c $NGINX_CONF_FILE }rh_status() {status $prog}rh_status_q() {rh_status >/dev/null 2>&1}case "$1" instart)    rh_status_q && exit 0    $1    ;;stop)rh_status_q || exit 0    $1    ;;restart)    $1    ;;test)    configtest    ;;reload)    rh_status_q || exit 7    $1    ;;force-reload)    force_reload    ;;status)    rh_status    ;;condrestart|try-restart)    rh_status_q || exit 0    ;;*)echo $"Usage: $0 {start|stop|status|restart|condrestart|try-restart|reload|force-reload|test}" exit 2esac

转载地址:http://yusib.baihongyu.com/

你可能感兴趣的文章
Python的elif语句
查看>>
迭代序列的三种方法和与序列相关的内建函数
查看>>
用Python实现求最大公约数和判断是否是素数
查看>>
用Python实现一个简单的算术游戏
查看>>
交叉编译linux内核
查看>>
awk简单用法介绍(转)
查看>>
shell脚本中使用MySQL
查看>>
linux --dup dup2 文件描述符重定向函数--输入输出重定向
查看>>
unix/linux中的dup()系统调用 --对上篇dup() dup2()例子的解释
查看>>
这学期读的书
查看>>
编译简介
查看>>
管道编程之pipe
查看>>
网络编程--C/S日期查询例子
查看>>
IPC机制---共享内存编程
查看>>
使用inotify进行文件事件通知
查看>>
Linux中时间函数的应用接口
查看>>
DNS解析过程详解
查看>>
牛奶可乐经济学---阅读总结
查看>>
求最长子序列和
查看>>
计算最大公因数的欧几里德算法
查看>>