欢迎来到天天文库
浏览记录
ID:55506867
大小:293.50 KB
页数:13页
时间:2020-05-15
《nginx安装部署及路径.doc》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、.Tomcat安装:在cathout.sh里配置好jdk路径然后chmod777startup.shshutdown.shcathout.sh最后./startup.sh简介:Nginx是一个web服务器也可以用来做负载均衡及反向代理使用,目前使用最多的就是负载均衡一、浏览器访问路径:192.168.12.11/、192.168.12.10/12.11安装路径:/usr/local/nginx12.10安装路径:/usr/local/nginx二、常用命令:启动:/usr/local/nginx/sbin/nginx停止/重新加载:/
2、usr/local/nginx/sbin/nginx-sstop(quit、reload)验证配置文件是否合法:/usr/local/nginx/sbin/nginx-t命令帮助:/usr/local/nginx/sbin/nginx-h三、安装步骤:(1)下载Nginx及相关组件[rootlocalhostsrc]#wgetnginx.org/download/nginx-1.10.2.tar.gz省略安装容...[rootlocalhostsrc]#wget.openssl.org/source/openssl-fips-2.0.
3、10.tar.gz省略安装容...[rootlocalhostsrc]#wgetzlib.net/zlib-1.2.11.tar.gz省略安装容...[rootlocalhostsrc]..#wgetftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.40.tar.gz省略安装容...(2)安装c++编译环境,如已安装可略过[rootlocalhostsrc]#yuminstallgcc-c++省略安装容...期间会有确认提示输入y回车Isthisok[y/N]:y
4、省略安装容...(3)安装Nginx及相关组件:依赖包安装顺序依次为:openssl、zlib、pcre,然后安装Nginx包openssl安装:[rootlocalhostsrc]#tarzxvfopenssl-fips-2.0.10.tar.gz省略安装容...[rootlocalhostsrc]#cdopenssl-fips-2.0.10[rootlocalhostopenssl-fips-2.0.10]#./config&&make&&makeinstall省略安装容...zlib安装:[rootlocalhostsrc]#t
5、arzxvfzlib-1.2.11.tar.gz省略安装容...[rootlocalhostsrc]#cdzlib-1.2.11[rootlocalhostzlib-1.2.11]#./configure&&make&&makeinstall省略安装容.....pcre安装:[rootlocalhostsrc]#tarzxvfpcre-8.40.tar.gz省略安装容...[rootlocalhostsrc]#cdpcre-8.40[rootlocalhostpcre-8.40]#./configure&&make&&makeinst
6、all省略安装容...nginx安装:[rootlocalhostsrc]#tarzxvfnginx-1.10.2.tar.gz省略安装容...[rootlocalhostsrc]#cdnginx-1.10.2[rootlocalhostnginx-1.10.2]#./configure&&make&&makeinstall省略安装容...安装完成后,可启动nginx;通过访问localhost看到这个就安装完毕了Ps:..问题:若进入nginx目录并启动报错了,errorwhileloadingsharedlibraries:lib
7、pcre.so.1:cannotopensharedobjectfile:Nosuchfileordirectory,按照下面方式解决:1.用whereislibpcre.so.1命令找到libpcre.so.1在哪里2.用ln-s/usr/local/lib/libpcre.so.1/lib64命令做个软连接就可以了3.用sbin/nginx启动Nginx4.用ps-aux
8、grepnginx查看状态[rootlocalhostnginx]#whereislibpcre.so.1[rootlocalhostnginx]#ln-s/u
9、sr/local/lib/libpcre.so.1/lib64[rootlocalhostnginx]#sbin/nginx[rootlocalhostnginx]#ps-aux
10、grepnginx 后续配置:1、简单配
此文档下载收益归作者所有