部署Nginx服务
案例实施
1.基础环境安装
(1)修改主机名
[root@localhost ~]# hostnamectl set-hostname nginx [root@localhost ~]# bash [root@nginx ~]# hostnamectl Static hostname: nginx Icon name: computer-vm Chassis: vm Machine ID: a2c6f463b1b24cc3a32a4f0049238e3e Boot ID: 55e972753e6d40b9a05652293b8700dc Virtualization: vmware Operating System: CentOS Linux 7 (Core) CPE OS Name: cpe:/o:centos:centos:7 Kernel: Linux 3.10.0-327.el7.x86_64 Architecture: x86-64 [root@nginx ~]#
(2)关闭防火墙及SELinux服务
[root@nginx ~]# setenforce 0 [root@nginx ~]# systemctl stop firewalld
(3)安装配置基础服务
使用CentOS-7-x86_64-DVD-1511.iso文件自行配置本地YUM源,编译安装基础环境,命令如下:
[root@nginx ~]# yum install gcc gcc-c++ openssl-devel zlib-devel zlib pcre-devel -y
创建指定用户,这个nginx用户要和 PHP服务器上创建的nginx两者id一致,这里先创建用户,命令如下:
完毕! [root@nginx ~]# groupadd -g 1001 nginx [root@nginx ~]# useradd -u 900 nginx -g nginx -s /sbin/nologin [root@nginx ~]# tail -l /etc/passwd
(4)安装配置Nginx服务
使用远程传输工具,将提供的nginx-1.18.0.tar.gz压缩包上传至nginx节点的/usr/local/srcl目录下,并解压到当前目录,命令如下:
[root@nginx src]# tar xzvf nginx-1.18.0.tar.gz
进入nginx-1.18.0目录,编译并安装,命令如下:
[root@nginx nginx-1.18.0]# ./configure --prefix=/usr/local/nginx --with-http_dav_module
--with-http_stub_status_module --with-http_addition_module --with-http_sub_module
--with-http_flv_module --with-http_mp4_module --with-http_ssl_module
--with-http_gzip_static_module --user=nginx --group=nginx
如果没有报错提示,请进行下一步安装,命令如下:
[root@nginx nginx-1.18.0]# make && make install
编译安装完毕后,创建软连接并启动测试,命令如下: (netstat命令无法使用时,请自行使用YUM源安装net-tools工具)
[root@nginx nginx-1.18.0]# ln -s /usr/local/nginx/sbin/nginx /usr/local/sbin/ [root@nginx nginx-1.18.0]# nginx -t nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful [root@nginx nginx-1.18.0]# nginx [root@nginx nginx-1.18.0]# netstat -ntpl Active Internet connections (only servers) Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN 25180/nginx: master tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 1445/sshd tcp 0 0 127.0.0.1:25 0.0.0.0:* LISTEN 1854/master tcp6 0 0 :::22 :::* LISTEN 1445/sshd tcp6 0 0 ::1:25 :::* LISTEN 1854/master
如果发现80端口启动,则表示 Nginx服务启动成功。可以在浏览器访问地址192.168.117.99来查看是否出现Nginx的欢迎页面。
原文:https://www.cnblogs.com/ljb1187418273/p/14308986.html