标签:local this 安装 release bsp hostname port .net 选择
今天需要在linux系统中配置Nginx环境,网上找了些资料。在安装过程中碰到了很多问题,花了一天的时间终于配置好了。相对于在window环境下配置Ngix还是比较简单的。花了点时间记录下来,方便以后查询;
cd /etc/sysconfig/network-scripts/
vi ifcfg-xxxxx(文件名)
ONBOOT=yes
IPADDR0=xxx.xxx.xxx.xxx
PREFIXO0=24
GATEWAY0=255.255.255.0
DNS1=(如192.168.1.1)
:wq! #保存退出 service network restart #重启网络 ping www.baidu.com #测试网络是否正常
hostname www #设置主机名为www
vi /etc/hostname #编辑配置文件
www #修改localhost.localdomain为www
:wq! #保存退出
vi /etc/hosts #编辑配置文件
127.0.0.1 localhost www #修改localhost.localdomain为www
:wq! #保存退出
shutdown -r now #重启系统
If you see this page, the nginx web server is successfully installed and working. Further configuration is required.
For online documentation and support please refer to nginx.org.
Commercial support is available at nginx.com.
Thank you for using nginx.
最后恭喜你能配置成功!!!
hyper-v Centos安装后网络配置及Nginx安装详细过程(转)
标签:local this 安装 release bsp hostname port .net 选择
原文地址:http://www.cnblogs.com/liujuncm5/p/6713615.html