Linux service的相关使用
service的相关操作 1 2 3 4 5 6 7 8 9 10 11 12 13 service nginx start service nginx stop service nginx reload service nginx restart service nginx status # 但实际上推荐改用: systemctl start nginx systemctl start nginx.service systemctl stop nginx systemctl reload nginx systemctl restart nginx systemctl status nginx 配置