博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
nginx
阅读量:6147 次
发布时间:2019-06-21

本文共 1324 字,大约阅读时间需要 4 分钟。

1.查看yum的nginx信息

[java]
  1. # yum info nginx  
[plain]
  1. Loaded plugins: fastestmirror  
  2. Loading mirror speeds from cached hostfile  
  3.  * epel: mirrors.yun-idc.com  
  4. Excluding Packages in global exclude list  
  5. Finished  
  6. Installed Packages  
  7. Name       : nginx  
  8. Arch       : x86_64  
  9. Version    : 0.8.55  
  10. Release    : 6.el5  
  11. Size       : 984 k  
  12. Repo       : installed  
  13. Summary    : Robust, small and high performance HTTP and reverse proxy server  
  14. URL        : http://nginx.net/  
  15. License    : BSD  
  16. Description: Nginx [engine x] is an HTTP(S) server, HTTP(S) reverse proxy and IMAP/POP3  
  17.            : proxy server written by Igor Sysoev.  

2.如果需要更换版本,先卸载

[plain]
  1. # yum remove nginx  

3.安装并启动nginx

[plain]
  1. # yum install nginx  
  2. # service nginx start  

4.浏览器访问

http://192.168.0.168/

返回结果如下表示成功

[plain]
    1. Welcome to nginx on EPEL!  
    2. This page is used to test the proper operation of the nginx HTTP server after it has been installed. If you can read this page, it means that the web server installed at this site is working properly.  
    3.   
    4. Website Administrator  
    5. This is the default index.html page that is distributed with nginx on EPEL. It is located in /usr/share/nginx/html.  
    6.   
    7. You should now put your content in a location of your choice and edit the root configuration directive in the nginx configuration file /etc/nginx/nginx.conf.  
    8.   
    9. [ Powered by nginx ]  [ Powered by Fedora EPEL ] 

转载于:https://www.cnblogs.com/zhangym/p/5833358.html

你可能感兴趣的文章
c++面向对象的一些问题1 0
查看>>
直播视频流技术名词
查看>>
IOC —— AOP
查看>>
比特币现金将出新招,推动比特币现金使用
查看>>
数据库的这些性能优化,你做了吗?
查看>>
某大型网站迁移总结(完结)
查看>>
部署SSL证书后,网页内容造成页面错误提示的处理办法
查看>>
MS SQLSERVER通用存储过程分页
查看>>
60.使用Azure AI 自定义视觉服务实现物品识别Demo
查看>>
Oracle 冷备份
查看>>
jq漂亮实用的select,select选中后,显示对应内容
查看>>
C 函数sscanf()的用法
查看>>
python模块之hashlib: md5和sha算法
查看>>
解决ros建***能登录不能访问内网远程桌面的问题
查看>>
pfsense锁住自己
查看>>
vsftpd 相关总结
查看>>
售前工程师的成长---一个老员工的经验之谈
查看>>
Get到的优秀博客网址
查看>>
【Git入门之四】操作项目
查看>>
老男孩教育每日一题-第107天-简述你对***的理解,常见的有哪几种?
查看>>