我是靠谱客的博主 冷静电话,最近开发中收集的这篇文章主要介绍nginx 使用 service nginx start 启动失败,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

问题:

sudo service nginx start

启动失败

解决:

# 查看 SELinux 的状态
$ /usr/sbin/sestatus
SELinux status:                 disabled

# 将SELINUX=enforcing 修改为 SELINUX=disabled
$ sudo vi /etc/selinux/config

# This file controls the state of SELinux on the system.
# SELINUX= can take one of these three values:
#     enforcing - SELinux security policy is enforced.
#     permissive - SELinux prints warnings instead of enforcing.
#     disabled - No SELinux policy is loaded.
SELINUX=disabled
# SELINUXTYPE= can take one of three two values:
#     targeted - Targeted processes are protected,
#     minimum - Modification of targeted policy. Only selected processes are protected.
#     mls - Multi Level Security protection.
SELINUXTYPE=targeted

# 重启
reboot

参考:https://blog.csdn.net/onlysunnyboy/article/details/75270533

最后

以上就是冷静电话为你收集整理的nginx 使用 service nginx start 启动失败的全部内容,希望文章能够帮你解决nginx 使用 service nginx start 启动失败所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(62)

评论列表共有 0 条评论

立即
投稿
返回
顶部