一. nginx依赖包安装
1.gcc安装:安装 nginx 需要先将官网下载的源码进行编译,编译依赖 gcc 环境,如果没有 gcc 环境,则需要安装
2.PCRE(Perl Compatible Regular Expressions) 是一个Perl库,包括 perl 兼容的正则表达式库。
nginx 的 http 模块使用 pcre 来解析正则表达式,所以需要在 linux 上安装 pcre 库,pcre-devel 是使用 pcre 开发的一个二次开发库。nginx也需要此库
3.zlib库提供了很多种压缩和解压缩的方式, nginx 使用 zlib 对 http 包的内容进行 gzip ,所以需要在 Centos 上安装 zlib 库。
4.OpenSSL 是一个强大的安全套接字层密码库,囊括主要的密码算法、常用的密钥和证书封装管理功能及 SSL 协议,并提供丰富的应用程序供测试或其它目的使用。
nginx 不仅支持 http 协议,还支持 https(即在ssl协议上传输http),所以需要在 Centos 安装 OpenSSL 库。
yum install -y gcc-c++
yum install -y pcre pcre-devel
yum install -y zlib zlib-devel
yum install -y openssl openssl-devel
二.nginx下载安装
[root@yoyo sbin]# cd ~
[root@yoyo ~]# cd /usr/local/
[root@yoyo local]# mkdir nginx
[root@yoyo local]# cd nginx
[root@yoyo nginx]# wget -c https://nginx.org/download/nginx-1.12.0.tar.gz
[root@yoyo nginx]# tar -zxvf nginx-1.12.0.tar.gz
[root@yoyo nginx]# cd nginx-1.12.0
# 安装到当前目录
[root@yoyo nginx]# ./configure
[root@yoyo nginx]# make
[root@yoyo nginx]# make install
三.启动nginx
[root@yoyo nginx]# cd /usr/local/nginx/sbin/
[root@yoyo nginx]# ./nginx
启动服务后,nginx默认是在80端口启动的,在浏览器输入http:ip:80/ (80端口默认可以省略),能正常访问到页面,说明服务启动成功
四.设置开机自启动
在系统服务目录里创建nginx.service文件
vi /lib/systemd/system/nginx.service
[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
1.设置开机自启动
systemctl enable nginx.service
2.停止开机自启动
systemctl disable nginx.service
3.启动服务
systemctl start nginx.service
4.重新启动服务
systemctl restart nginx.service
五.修改nginx启动端口
[root@yoyo ~]# cd /usr/local/nginx/conf
[root@yoyo conf]# ll
total 60
-rw-r--r-- 1 root root 1077 Jan 8 14:16 fastcgi.conf
-rw-r--r-- 1 root root 1077 Jan 8 14:16 fastcgi.conf.default
-rw-r--r-- 1 root root 1007 Jan 8 14:16 fastcgi_params
-rw-r--r-- 1 root root 1007 Jan 8 14:16 fastcgi_params.default
-rw-r--r-- 1 root root 2837 Jan 8 14:16 koi-utf
-rw-r--r-- 1 root root 2223 Jan 8 14:16 koi-win
-rw-r--r-- 1 root root 3957 Jan 8 14:16 mime.types
-rw-r--r-- 1 root root 3957 Jan 8 14:16 mime.types.default
-rw-r--r-- 1 root root 2656 Jan 8 14:16 nginx.conf
-rw-r--r-- 1 root root 2656 Jan 8 14:16 nginx.conf.default
-rw-r--r-- 1 root root 636 Jan 8 14:16 scgi_params
-rw-r--r-- 1 root root 636 Jan 8 14:16 scgi_params.default
-rw-r--r-- 1 root root 664 Jan 8 14:16 uwsgi_params
-rw-r--r-- 1 root root 664 Jan 8 14:16 uwsgi_params.default
-rw-r--r-- 1 root root 3610 Jan 8 14:16 win-utf
[root@yoyo conf]# cp nginx.conf nginx.conf.bak
[root@yoyo conf]# vim nginx.conf
vim打开后,找到服务端口listen 80这段,输入键盘上i键后编辑,改成81
server {
listen 80;
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root html;
index index.html index.htm;
}
修改后重新加载下配置文件
[root@yoyo sbin]# cd /usr/local/nginx/sbin/
[root@yoyo sbin]# ./nginx -s reload
环境搭建完毕,谢谢!```