Lệnh restart – start – stop Nginx , Php-FPM, MariaDB (MySQL) trên Centos6 và Centos7 1. Nginx Trên centos 6: Restart: service nginx restart Stop: service nginx stop Start: service nginx start Nếu restart thành công thì sẽ có chữ OK. Trên centos 7: Restart: systemctl restart nginx.service Stop: systemctl stop nginx.service Start: systemctl start nginx.service 2. PHP-FPM Restart: service php-fpm restart Stop: service php-fpm stop Start: service php-fpm start Trên centos 7: Restart: systemctl restart php-fpm.service Stop: systemctl stop php-fpm.service Start: systemctl start php-fpm.service 3. MariaDB (MySQL) Restart: service mysql restart Stop: service mysql stop Start: service mysql start Trên centos 7: Restart: systemctl restart mariadb.service Stop: systemctl stop mariadb.service Start: systemctl start mariadb.service Các dịch vụ khác bạn có thể suy luận tương tự như trên. Chúc bạn thành công.