-
下载 Nginx
wget http://nginx.org/download/nginx-1.12.2.tar.gz
-
安装Nginx所需依赖
yum -y install gcc zlib zlib-devel pcre-devel openssl openssl-devel
-
解压 Nginx
tar -zxvf nginx-1.12.2.tar.gz
-
执行配置
./configure
-
编译安装(默认安装在/usr/local/nginx)
make make install
-
测试安装
# cd到刚才配置的安装目录/usr/loca/nginx/ ./sbin/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
-
启动 Nginx
cd /usr/local/nginx/sbin ./nginx //启动nginx
-
配置开机启动
vim /etc/rc.d/rc.local
-
查看是否安装成功
http://139.199.177.202/ (此处使用自己的服务器 IP 地址)
出现图示便安装成功!
-
其他指令
# 查看版本 cd /usr/local/nginx/sbin/ # 进入安装目录 ./nginx -v ? # 查看 Nginx 是否启动 ps -ef | grep nginx ? # 关闭 Nginx ./nginx -s stop ? # 启动 ./nginx ? # 重新加载 ./nginx -s reload ? # 配置文件位置 /usr/local/nginx/conf/nginx.conf
相关文章
- 07-15Windows 8 下离线安装。net Framework 3.5
- 07-15mac 下安装securecrt
- 07-155 -- Hibernate的基本用法 --2 1 Hibernate 下载和安装
- 07-15VS2010 win7 64位安装后新建项目生成时错误:LINK : fatal error LNK1123: 转换到 COFF 期间失败: 文件无效或损坏
- 07-15pip安装:Cannot uninstall ''. It is a distutils installed project and thus we cannot accurate
- 07-15【Python爬虫实战】Scrapy框架的安装 搬运工亲测有效
- 07-15验证Nginx是否在提供静态文件而不是Flask
- 07-15django-与gunicorn nginx长期运行的请求
- 07-15在具有Nginx和Gunicorn的生产环境中,使用unix套接字或tcp绑定它们是否更好?
- 07-15nginx-我真的需要Web服务器以及API-微服务架构中的网关