下面小编就为大家带来一篇关于linux系统安装nginx——0基础linux安装web服务器6。小编觉得挺不错的,现在就分享给大家,如果你在找linux安装nginx,安装nginx,也可以做个交流。一起跟随小编过来看看吧。
linux系统安装nginx——0基础linux安装web服务器6
作者:小程序教员 发布时间:2018-01-19
安装nginx前,
需要安装一些相关的依赖和库文件,
由于我们这个是安装web服务器的系列文章,
前面已经把相关的软件安装了,
这里就不再安装。
pcre,zlib安装,
见《linux安装gcc》
一、 安装openssl
http://ftp.openssl.org/source/openssl-1.1.0g.tar.gz
tar xzvf openssl-1.1.0g.tar.gz
cd openssl-1.1.0g
./configure --prefix=/usr/local/openssl
make && make install
如果下载不了或下载速度慢,
可以加子恒老师公众号 性感笔记
回复 openssl
一、 安装nginx
由于安装 nginx 时, pcre, zlib, openssl需要指定源代码路径, 我们假设上面的软件都下载到/demo目录下。 注意是源代码路径, 不是安装路径。wget http://nginx.org/download/nginx-1.13.7.tar.gz
tar -xzvf nginx-1.13.7.tar.gz
cd nginx-1.13.7
./configure \
--prefix=/usr/local/nginx \
--user=www \
--group=www \
--with-http_ssl_module \
--with-http_gzip_static_module \
--without-mail_pop3_module \
--without-mail_imap_module \
--without-mail_smtp_module \
--without-http_uwsgi_module \
--without-http_scgi_module \
--with-pcre=/demo/pcre-8.41 \
--with-zlib=/demo/zlib-1.2.11 \
--with-openssl=/demo/openssl-1.1.0g
如果下载不了或下载速度慢,
可以加子恒老师公众号 性感笔记
回复 nginx
三、 把 nginx 添加到系统路径
vi /etc/profile
export PATH="$PATH:/usr/local/nginx/sbin"
source /etc/profile
四、 启动 nginx
nginx
注意你需要执行第三步才能直接使用 nginx 启动,
否则会报错说没有这个命令。
或者你使用下面的启动也行
/usr/local/nginx/sbin/nginx
五、 查看启动是否成功
curl localhost
如果看到类似下面的内容,
代表你已经成功安装nginx并且成功启动。
由于很多人使用 nginx,
所以下一篇文章,
说说 nginx怎么实现平滑升级,
然后再讲 nginx 怎么配置才能够解析php脚本
linux从0开始安装web服务器1
linux连接互联网——linux安装web服务器2
安装gcc——linux安装web服务器3
安装mysql5.6.38——linux安装web服务器4
安装php7——linux安装web服务器5
声明:部分文章或图片未能及时与原作者取得联系,若来源标注错误或侵犯到您的权益烦请告知QQ:2334512685,我们会及时删除。
发布:秦子恒博客,欢迎转载分享,请保留出处。
linux系统安装nginx——0基础linux安装web服务器6链接:https://www.qinziheng.com/details/5081/
本文关键词:安装nginxlinux安装nginx
linux系统安装nginx——0基础linux安装web服务器6相关文章