nginx安装以及安装过程所遇到的问题

【安装本地yum源或者临时yum源】

安装临时yum源
第一步:安装HTTP服务

# yum -y install httpd.x86_64


第二步:启动服务,并设置httpd服务 开机自启,


# systemctl status httpd
# systemctl start httpd
# systemctl enable httpd


第三步:让httpd服务管理的目录/var/www/html下有挂载的路径的软连接


# ln -s /mnt/dvd /var/www/html/repo


第四步:其他机器进行修改yum源配置文件


# cd /etc/yum.repos.d/
# rename .repo .repo.bak  ./*.repo
# cp CentOS-Base.repo.bak local.repo
# vi local.repo
[local]     						
name=local		  					
baseurl=http://qianfeng01/repo		
enabled=1							
gpgcheck=1							
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7  


1)yum info nginx
找不到nginx的安装包
2)rpm -ivh https://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-
centos-7-0.el7.ngx.noarch.rpm
(要能够连接外网)

【ping www.baidu.com 】

查看 ifcfg-eth0下的ip和网关地址 是否是在DHCP设置的范围内

解决方法

     

1.恢复VMware的网络默认设置
  编辑->虚拟网络编辑器

nginx安装以及安装过程所遇到的问题_第1张图片

2.还原默认设置 
并且查看nat模式下的NAT设置
    记住网关地址 
查看NAt模式下的DHCP设置
     记住ip范围

nginx安装以及安装过程所遇到的问题_第2张图片

nginx安装以及安装过程所遇到的问题_第3张图片

nginx安装以及安装过程所遇到的问题_第4张图片

3.vi /etc/sysconfig/network-scripts/ifcfg-ens33
修改虚拟机ip地址和网关

nginx安装以及安装过程所遇到的问题_第5张图片


3).yum repolist 发现yum源中,多了个nginx cd /etc/yum.repo.d
4).安装nginx:yum -y install nginx ##(要能够连接外网)

错误:软件包:nginx-1.18.0-1.el6.ngx.x86_64 (nginx)
          需要:libpcre.so.0()(64bit)
 您可以尝试添加 --skip-broken 选项来解决该问题
 您可以尝试执行:rpm -Va --nofiles --nodigest

解决办法:(6改为7)

 vi /etc/yum.repos.d/nginx.repo

# nginx.repo



[nginx]

name=nginx repo

baseurl=http://nginx.org/packages/centos/7/$basearch/

gpgcheck=0

enabled=1


5).service nginx start
ps:查看nginx安装目录 whereis nginx

【启动失败

Redirecting to /bin/systemctl start nginx.service
Job for nginx.service failed because the control process exited with error code. See "systemctl status nginx.service" and "journalctl -xe" for details.

nginx安装以及安装过程所遇到的问题_第6张图片

netstat -nltp

nginx安装以及安装过程所遇到的问题_第7张图片

端口80 被占用

杀死进程或者修改nginx的端口号

nginx安装以及安装过程所遇到的问题_第8张图片
6).查看http://192.168.XXX.XXX:80如果可以看到nginx的页面就表示你已经配置ok了

nginx安装以及安装过程所遇到的问题_第9张图片
7).配置下nginx

nginx的配置目录
cd /etc/nginx/
vi /etc/nginx/nginx.conf

vi /etc/ngnx/conf.d/default.conf

server {
    listen       80;
    server_name  localhost;

    #charset koi8-r;
    #access_log  /var/log/nginx/host.access.log  main;

    location / {
        root   /usr/share/nginx/html;
        index  index.html index.htm;
    }

vi /etc/nginx/nginx.conf  自定义配置文件

user  root;    //root用户
worker_processes  1;    //工作进程数

error_log  /var/log/nginx/error.log warn;
pid        /var/run/nginx.pid;    //进程号


events {
    worker_connections  1024;  //连接数 并发数量
}


http {
    include       /etc/nginx/mime.types;
    default_type  application/octet-stream;

    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                      '$status $body_bytes_sent "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for"'; //格式

    access_log  /var/log/nginx/access.log  main;   //操作日志存储位置

    sendfile        on;
    #tcp_nopush     on;

    keepalive_timeout  65;

    #gzip  on;

    include /etc/nginx/conf.d/*.conf;
}

 

你可能感兴趣的:(nginx安装以及安装过程所遇到的问题)