【nginx】配置开机自启
1.nginx配置开机自启
- 安装完成nginx之后
vim /lib/systemd/system/nginx.service
[Unit]
Description=nginx
After=network.target
[Service]
Type=forking
ExecStart=/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
ExecReload=/usr/local/nginx/sbin/nginx -s reload
ExecStop=/usr/local/nginx/sbin/nginx -s quit
PrivateTmp=true
[Install]
WantedBy=multi-user.target
- 设置开机自启
# 开机自启
systemctl enable nginx.service
# 启动
systemctl start nginx.service
# 状态
systemctl status nginx.service
2 、 下载Nginx安装包
wget http://nginx.org/download/nginx-1.27.0.tar.gz
2.1 解压Nginx压缩包
tar zxvf nginx-1.27.0.tar.gz
2.2 进入Nginx目录下
cd /nginx/nginx-1.27.0
2.3 配置安装运行目录
./configure --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module
2.4 出现如下错误需要安装依赖包
yum -y install pcre-devel
yum -y install openssl openssl-devel
- 用以下命令下载gcc编译器
yum -y install gcc gcc-c++ autoconf automake make
2.5 进行重新配置
./configure --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module
2.6 执行编译安装
make && make install
2.7 安装完毕,进入Nginx下的sbin目录并启动nginx
cd /usr/local/nginx/sbin
./nginx
启动、停止的几个命令
#进入命令管理文件夹sbin
cd /usr/local/nginx/sbin
#启动nginx
./nginx
或
./nginx -c /usr/local/nginx/conf/nginx.conf
#停止nginx
./nginx -s stop
#停止nginx(等待进程处理完毕进行关闭)
./nginx -s quit
#重启nginx
./nginx -s reload
本站资源均来自互联网,仅供研究学习,禁止违法使用和商用,产生法律纠纷本站概不负责!如果侵犯了您的权益请与我们联系!
转载请注明出处: 免费源码网-免费的源码资源网站 » 【nginx】centos7安装并配置开机自启
发表评论 取消回复