Enable and disable scripts for Nginx and PHP-FPM

Source: Internet
Author: User
Tags fpm vps

#!/bin/bash# Stop PHP-Fpmsudo PHP-VPS-ef | grep php-fpm | Sed'$d'Echo"..............................."PS-ef | grep Nginx | Sed'$d'Echo".............................."if[-f/home/php/var/run/php-fpm.pid]then pid= ' cat/home/php/var/run/php-Fpm.pid ' echo"PHP-FPM Id:${pid} process is shutting down ....."sudo kill-INT $pidElseEcho"failed to close php-fpm, the service did not start ...."fi# Stop Nginxif[-f/home/nginx/conf/nginx.pid]then #sudo nginx-s Stop PID= ' cat/home/nginx/conf/Nginx.pid ' echo"Nginx Id:${pid} process is shutting down ..."sudo kill-INT $pidElseEcho"Nginx shutdown failed, the service has not started ..."fi

Start the service:

#!/bin/bash# starting PHP-Fpmsudo PHP-VPS-ef | grep php-fpm | Sed'$d'Echo"..............................."PS-ef | grep Nginx | Sed'$d'Echo".............................."#启动进程showpro () {if[-f/home/php/var/run/php-fpm.pid]then pid= ' cat/home/php/var/run/php-Fpm.pid ' echo"PHP-FPM Id:${pid} process has started ....."Elsesudo php-FPM Echo"start the PHP-FPM process ... ..... ....."fi# start Nginxif[-f/home/nginx/conf/nginx.pid]then #sudo nginx-s Stop PID= ' cat/home/nginx/conf/Nginx.pid ' echo"Nginx Id:${pid} process has started ..."Elsesudo nginx echo"start the Nginx process ... ...... ....."fi}showpro# run Showpro again

Enable and disable scripts for Nginx and PHP-FPM

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.