centos7安装nginx的两种⽅法介绍
centos7安装nginx
第⼀种⽅式:通过yum安装
直接通过 yum install nginx 肯定是不⾏的,因为yum没有nginx,所以⾸先把 nginx 的源加⼊ yum 中。
运⾏下⾯的命令:
1.将nginx放到yum repro库中
复制代码代码如下:
[root@localhost ~]# rpm -ivh /packages/centos/7/noarch/RPMS/arch.rpm 2.查看nginx信息
centos vim命令[root@localhost ~]# yum info nginx
3.使⽤yum安装ngnix
[root@localhost ~]# yum install nginx
效果如下:
[root@localhost ~]# yum install nginx
已加载插件:fastestmirror, langpacks
Loading mirror speeds from cached hostfile
* base: mirrors.usc.edu
* extras: mirror.raystedman
* updates: ast
正在解决依赖关系
--> 正在检查事务
---> 软件包 nginx.x86_64.1.1.10. 将被安装
······
·
·····
正在安装 : 1:nginx-1.10.86_64
Thanks for using nginx!
Please find the official documentation for nginx here:
Commercial subscriptions for nginx are available on:
----------------------------------------------------------------------
验证中 : 1:nginx-1.10.86_64 1/1
已安装:
nginx.x86_64 1:1.10.
完毕!
4.启动nginx
[root@localhost ~]# service nginx start
5.查看nginx版本
[root@localhost ~]# nginx -v
6.访问nginx,现在你可以通过公⽹ip (本地可以通过 localhost /或 12
7.0.0.1 ) 查看nginx 服务返回的信息。
[root@localhost ~]# curl -i localhost
效果如下:
······
Welcome to nginx!。
······
[root@localhost /]# ll /etc/nginx/
总⽤量 32
drwxr-xr-x. 2 root root 25 10⽉ 12 13:11 conf.d
-rw-r--r--. 1 root root 1007 5⽉ 31 22:09 fastcgi_params
-rw-r--r--. 1 root root 2837 5⽉ 31 22:09 koi-utf
-rw-r--r--. 1 root root 2223 5⽉ 31 22:09 koi-win
-rw-r--r--. 1 root root 3957 5⽉ 31 22:pes
lrwxrwxrwx. 1 root root 29 10⽉ 12 13:11 modules -> ../../usr/lib64/nginx/modules
-rw-r--r--. 1 root root 643 5⽉ 31 22:f
-rw-r--r--. 1 root root 636 5⽉ 31 22:09 scgi_params
-rw-r--r--. 1 root root 664 5⽉ 31 22:09 uwsgi_params
-
rw-r--r--. 1 root root 3610 5⽉ 31 22:09 win-utf
8.实践:
⽬的:修改服务名,接着从外部访问这个服务
操作:
a.修改nginx配置⽂件
[root@localhost nginx]# vim /etc/nginx/conf.f
修改server_name部分:server_name yytest;
b.重载服务
[root@localhost nginx]# /usr/sbin/nginx -s reload
c.从外部访问nginx服务(192.168.10.11)
d.你发现访问不了,原因1,你没有在hosts⽂件做映射;原因2,及时你在hosts⽂件中了映射,由于nginx服务器的80端⼝堵塞或防⽕墙没关
e.解决办法:
步骤⼀:修改客户机(192.168.10.10)的hosts⽂件,使⽤SwitchHosts⼯具添加 192.168.10.11 yytest
步骤⼆:关闭防⽕墙,具体下⽂有说明
启动:
复制代码代码如下:
$ /usr/sbin/nginx或任意路径下运⾏service nginx start(centos7是systemctl start nginx.service )
重启:
$ /usr/sbin/nginx –s reload
停⽌:
$ /usr/sbin/nginx –s stop
测试配置⽂件是否正常:
$ /usr/sbin/nginx –t
可能遇到的问题:
具体情况如下 1。本机能ping通虚拟机 2。虚拟机也能ping通本机 3。虚拟机能访问⾃⼰的web 4。本机⽆法访问虚拟⼰的web 这个问题的原因是服务器的80端⼝没有打开或防⽕墙没有关闭
解决办法
如果是centos6:
解决⽅法如下:
/sbin/iptables -I INPUT -p tcp --dport 80 -j ACCEPT
然后保存:
/etc/rc.d/init.d/iptables save
重启防⽕墙
/etc/init.d/iptables restart
CentOS防⽕墙的关闭,关闭其服务即可:
查看CentOS防⽕墙信息:/etc/init.d/iptables status
关闭CentOS防⽕墙服务:/etc/init.d/iptables stop
永久关闭防⽕墙: chkconfig –level 35 iptables off
如果是centos7
[root@rhel7 ~]# systemctl status firewalld.service
[root@rhel7 ~]# systemctl stop firewalld.service
[root@rhel7 ~]# systemctl disable firewalld.service
[root@rhel7 ~]# systemctl status firewalld.service
扩展知识:
启动⼀个服务:systemctl start firewalld.service
关闭⼀个服务:systemctl stop firewalld.service
重启⼀个服务:systemctl restart firewalld.service
显⽰⼀个服务的状态:systemctl status firewalld.service
在开机时启⽤⼀个服务:systemctl enable firewalld.service
在开机时禁⽤⼀个服务:systemctl disable firewalld.service
查看服务是否开机启动:systemctl is-enabled firewalld.service;echo $?
查看已启动的服务列表:systemctl list-unit-files|grep enabled
第⼆种⽅式:通过⼿动下载安装包解压安装
1.下载nginx包。
[root@localhost ~]# wget /download/nginx-1.10.
2.复制包到你的安装⽬录
[root@localhost ~]# cp nginx-1.10. /usr/local/
3.解压
[root@localhost ~]# tar -zxvf nginx-1.10.
[root@localhost ~]# cd nginx-1.10.1
4.启动nginx
[root@localhost ~]# /usr/local/nginx/sbin/nginx
5.查看版本s
[root@localhost ~]# nginx -v
6.url访问nginx localhost或12
7.0.0.1
以上就是本⽂的全部内容,希望对⼤家的学习有所帮助,也希望⼤家多多⽀持。
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论