nginx软件的编译安装(二)

nginx软件的编译

  ①. 检查软件安装的系统环境
       cat /etc/redhat-release
       uname -r
  ②. 安装nginx的依赖包(pcre-devel openssl-devel)---假设不进行安装
        yum install -y pcre-devel openssl-devel
  ③. 下载nginx软件---1.10.2 复制链接地址(统一位置进行下载)        
        mkdir -p /home/server/tools
        cd /home/server/tools
        wget -q http://nginx.org/download/nginx-1.10.3.tar.gz
		说明:软件很小,用心查看一下

   编译安装软件步骤

a. 解压要编译安装的软件(解压软件---配置(./configure)---做菜(编译 make)---上菜(安装 make install))
           tar xf nginx-1.10.2.tar.gz
           cd nginx-1.10.2
           ls (里面的内容就是源代码(config readme安装说明)---默认编译会安装到/usr/local目录)
           useradd -s /sbin/nologin -M www<--- 创建web服务程序www用户
           ./configure --prefix=/application/nginx-1.10.2 --user=www --group=www --with-http_stub_status_module  --with-http_ssl_module
   (编译参数说明后续补充说明)
           make 
           make install 
           ln -s /application/nginx-1.10.2 /application/nginx<--- 安装完成一个软件要做一个软链接
b. 启动nginx软件程序进行测试
           /applicaton/nginx/sbin/nginx 
           lsof -i:80
           浏览器访问 10.0.0.8:80
           至此软件安装完毕:

nginx软件的编译安装常见错误说明

    ①. nginx软件安装过程中遇到的问题   

 · 软件依赖包未正确安装问题---PCRE依赖包没有安装
  ---------------------------------------------------------------------------------------------
          ./configure: error: the HTTP rewrite module requires the PCRE library.
          You can either disable the module by using --without-http_rewrite_module
          option, or install the PCRE library into the system, or build the PCRE library
          statically from the source with nginx by using --with-pcre=<path> option.
          ---------------------------------------------------------------------------------------------
  解决方法:yum install pcre pcre-devel -y
  
· 软件依赖包未正确安装问题---OPENSSL依赖包没有安装  
  ---------------------------------------------------------------------------------------------
          ./configure: error: SSL modules require the OpenSSL library.
          You can either do not enable the modules, or install the OpenSSL library
          into the system, or build the OpenSSL library statically from the source
          with nginx by using --with-openssl=<path> option.
          ---------------------------------------------------------------------------------------------
  解决方法:yum install openssl openssl-devel -y


    ②. nginx软件启动过程中遇到的问题

· nginx软件重复启动产生的错误信息
  ---------------------------------------------------------------------------------------------
          [root@web01 nginx-1.10.2]# /application/nginx/sbin/nginx 
          nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
          nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
          nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
          nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
          nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
          nginx: [emerg] still could not bind()
  ---------------------------------------------------------------------------------------------
          解决方法:nginx软件已经启动无需反复启动,如果需要重新启动需要停止nginx进程或者用reload方式进行重启

 nginx软件排查问题三部曲说明

   a 在客户端上ping服务器端IP,检查链路是否通畅
   b 在客户端上telnet服务器端IP、端口,检查链路访问是否通畅
   c 在客户端上wget检测模拟页面访问是否正常    
            curl -v/wget --debug

nginx目录结构说明

[root@web01 nginx]# ll
total 36
drwxr-xr-x 2 root root 4096 2017-08-10 11:02 conf   --- 保存nginx服务配置文件信息
drwxr-xr-x 2 root root 4096 2017-08-10 11:02 html   --- web服务的站点目录
drwxr-xr-x 2 root root 4096 2017-09-09 15:51 logs   --- nginx服务相关日志文件保存的目录
drwxr-xr-x 2 root root 4096 2017-09-09 15:45 sbin   --- nginx服务相关命令保存目录
403错误出现情况:
01. 客户端访问受限
02. 默认的首页文件不存在时
vim批量编辑方法:
01; ctrl+v  进入批量编辑模式
02: 上下箭头选中批量操作的行
03: shift+i 编辑选中的第一行
04: 按ESC结束编辑,多行同时编辑完成

nginx软件使用过程中深入说明

①. nginx软件语法检查方法:
    nginx -t  
    
②. nginx软件访问测试过程:
    curl -v www.baidu.com
===================================================================================================
扩展说明:
a. 304状态码的意义说明
       304状态码是浏览器缓存造成的,可以利用装包工具进行查看获取(抓包工具进行理解http访问过程)
   取消缓存的方式为:在浏览器设置中进行清除缓存;或者采用浏览器强制刷新功能进行浏览器缓存的刷新
b. wireshark抓包软件使用说明
           启动软件---选择需要进行转包的网卡---开始进行抓包
===================================================================================================
③. nginx软件编译参数查看:
    nginx -V                 <--- 查看原有的编译参数信息

nginx软件静态页面编写过程:

①. 熟悉软件文件目录结构信息
    需要对软件的目录结构、软件相关文件作用、软件主要文件配置方法进行了解熟悉
    日志文件信息内容查看,相关日志文件信息内容格式后续课程会继续说明
②. 编写静态访问页面文件信息
    <html>
<meta charset="utf-8">
<head>
<title>富华linux运维</title>
</head>
<body>
富华运维之路
<table border=1>
<tr> <td>01</td> <td> </td> </tr>
<tr> <td>02</td> <td> </td> </tr>
        <tr> <td>03</td> <td> </td> </tr>
        </table>
<a href="http://blog.oldboyedu.com">
<img src="stu.png" />
</a>
</body>
</html>
        说明:利用虚拟机端口转发,进行zip压缩后的站点目录文件压缩包下载
              wget http://192.168.11.xx:9000/index.html.zip    <- 进行站点目录下压缩包文件下载
              	===================================================================================================	  
        扩展知识说明:页面访问乱码文件排查方法
		a. 检查linux系统的字符集信息
		   echo $LANG
		   locale     <- 查看字符集
		   vi /etc/virc          
           set fileencodings=utf-8,gbk,ucs-bom,cp936    <--- 任意地方增加一行
	    b. 检查xshell软件字符集设置
		===================================================================================================	

nginx配置文件内容信息说明

  ①. nginx配置文件框架结果说明
    配置文件内容中的框架结构说明
egrep -v "#|^$" nginx.conf.default >nginx.conf       <- 精简化/最小化默认nginx.conf配置文件信息
  ②. nginx配置文件实践配置说明
    · 检验nginx服务是否正常运行:
  [root@web02 ~]# ps -ef|grep nginx
          root       5018      1  0 Apr27 ?        00:00:00 nginx: master process /application/nginx/sbin/nginx
          nginx     12998   5018  0 Apr27 ?        00:00:00 nginx: worker process        
          root      37115  37039  0 15:50 pts/0    00:00:00 grep --color=auto nginx
          [root@web02 ~]# lsof -i:80
          COMMAND   PID  USER   FD   TYPE DEVICE SIZE/OFF NODE NAME
          nginx    5018  root    7u  IPv4  18199      0t0  TCP *:http (LISTEN)
          nginx   12998 nginx    7u  IPv4  18199      0t0  TCP *:http (LISTEN)


打赏 支付宝打赏 微信打赏

最后编辑于:2017/12/24作者: 富华运维空间

相关推荐

发表评论

动态鼠标蜘蛛网特效