Nginx安装(支持https)和证书制作工具

1:安装工具包 wget、vim和gcc
yum install -y wget (不需要的,执行nginx文件下载)
yum install -y vim-enhanced (不需要)
yum install -y make cmake gcc gcc-c++

2:下载nginx安装包
wget http://nginx.org/download/nginx-1.1.16.tar.gz

3:安装依赖包
yum install -y pcre pcre-devel
yum install -y zlib zlib-devel
yum install -y openssl openssl-devel

4:解压nginx-1.1.16.tar.gz到/usr/local/目录下
tar -zxvf nginx-1.1.16.tar.gz -C /usr/local/

5:进行configure配置
进入nginx目录然后在执行./configure命令

[host2]# ./configure --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module
6:编译安装
[host
]# make && make install
7:启动Nginx,启动完之后检查nginx是否已经正常启动,看到如下信息说明正常启动
[host]# /usr/local/nginx/sbin/nginx
[host
]# ps -ef | grep nginx
root 24956 1 0 19:41 ? 00:00:00 nginx: master process /usr/local/nginx/sbin/nginx
nobody 24957 24956 0 19:41 ? 00:00:00 nginx: worker process
root 24959 10533 0 19:41 pts/0 00:00:00 grep --color=auto nginx
[host***]#
如果要关闭nginx,我们可以使用如下命令:

[host****]# /usr/local/nginx/sbin/nginx -s stop

如果想要重新热启动nginx,则使用如下命令:

[host]# /usr/local/nginx/sbin/nginx -s reload
8:配置防火墙,nginx默认的端口是80
[host
]# firewall-cmd --zone=public --add-port=80/tcp --permanent
success
[host***]# firewall-cmd --reload
success
9:配置nginx的开机启动
1、在系统服务目录里创建nginx.service文件
vi /usr/lib/systemd/system/nginx.service
2、写入内容如下:
Unit
Description=nginx
After=network.target

[Service]
Type=forking
ExecStart=/usr/local/nginx/sbin/nginx
ExecReload=/usr/local/nginx/sbin/nginx -s reload
ExecStop=/usr/local/nginx/sbin/nginx -s quit
PrivateTmp=true

[Install]
WantedBy=multi-user.target

Description:描述服务
After:描述服务类别
[Service]服务运行参数的设置
Type=forking是后台运行的形式
ExecStart为服务的具体运行命令
ExecReload为重启命令
ExecStop为停止命令
PrivateTmp=True表示给服务分配独立的临时空间
注意:[Service]的启动、重启、停止命令全部要求使用绝对路径
[Install]运行级别下服务安装的相关设置,可设置为多用户,即系统运行级别为3
3、设置开机自启动
systemctl enable nginx.service
4、查看nginx状态
systemctl status nginx.service

制作证书工具:链接:https://pan.baidu.com/s/1Y_W0dCfBFMcQyb8H8V4-zQ
提取码:eq77
其使用手册:https://blog.csdn.net/wyx100/article/details/46485935(转载)

你可能感兴趣的:(Nginx安装(支持https)和证书制作工具)