systemctl restart php-fpm 修改配置文件后重载 systemctl reload php-fpm 开机自启动 systemctlenablephp-fpm 禁止开机自启动 systemctl didable php-fpm
touch/usr/lib/systemd/system/nginx.service 创建成功 之后,我们要写入。 编写配置文件 使用vim进行配置文件的写入(其实刚刚不用touch创建也可以~): 代码语言:shell 复制 vim/usr/lib/systemd/system/nginx.service 新增: 代码语言:html 复制 [Unit] Description=nginx After=network.target [Service] Type=forking...
vi /etc/nginx/default.d/php.conf ## ## location URL路径匹配:<php后缀名>的<php代码页文件> ## index index.php index.html index.htm; location ~ \.php$ { root /usr/share/nginx/html; ## 设置:主目录(通常与Nginx主目录相同) fastcgi_index index.php; ## 设置:PHP默认首页文件名 include f...
重启或者查看某个服务状态 systemctl restart abrtd.servicesystemctl status abrtd.service 设置服务开机启动 systemctl enable nginx.service//设置nginx开机启动 systemctl enable php-fpm.service//php-fpm开机启动 搜索指定状态的服务 systemctl list-unit-files | grep enabled//搜索全部已启动的服务,enabled 启用;...
After=php-nginx.service mysql.server.service Wants=php-nginx.service mysql.server.service[Service]Type=forking User=root Group=root ExecStart=/Data/apps/php/sbin/php-fpm-RRestart=always[Install]WantedBy=multi-user.target nginx开机自启 nginx.service ...
systemctl restart abrtd.service systemctl status abrtd.service 1. 2. 设置服务开机启动 systemctl enable nginx.service //设置nginx开机启动 1. systemctl enable php-fpm.service //php-fpm开机启动 1. 搜索指定状态的服务 systemctl list-unit-files | grep enabled //搜索全部已启动的服务,enabled 启用;...
systemctl status nginx systemctl start nginx service nginx restart #重启 Nginx service php-fpm restart # 重启 php-fpm systemctl start mysqld #启动 MySQL systemctl status mysqld #查看 MySQL 状态 systemctl stop mysqld #关闭mysql systemctl enable mysqld #mysql开机启动...
sudo systemctl status php-fpm.service 检查网络接口和端口: 确保nginx配置的监听端口没有被其他服务占用,并且网络接口是可用的。 5. 修复问题并重新启动nginx服务 一旦找到问题的根源,你需要修复它,然后尝试重新启动nginx服务。 bash sudo systemctl restart nginx.service 如果问题仍然存在,你可能需要再次检查上述...
#ExecReload=/usr/local/mysql/support-files/mysql.server restart #ExecStop=/usr/local/mysql/support-files/mysql.server stop #PrivateTmp=true [Install] WantedBy=multi-user.target 编写nginx的启动脚本 1.创建nginx.service脚本文件 vim /usr/lib/systemd/system/nginx.service 2.编写脚本内容 [Unit] Descrip...
service -f# 合并显示多个 Unit 的日志$ journalctl -u nginx.service -u php-fpm.service --since today# 查看指定优先级(及其以上级别)的日志,共有8级# 0: emerg# 1: alert# 2: crit# 3: err# 4: warning# 5: notice# 6: info# 7: debug$ sudo journalctl -p err -b# 日志默认分页输出,--...