IT忍者神龟之RHEL / Centos 6: Install Nginx Using Yum Command 翻译

来源:互联网 发布:php的数组函数 编辑:程序博客网 时间:2024/05/29 15:42

How can I install Nginx web server On CentOS Linux 6 or Red Hat Enterprise Linux 6 using yum command?

怎么用yun源方式安装Nginx到 web server  centOs 和Red hat 6linux系统。


Step #1: Install nginx repo

Type the following wget command to install nginx yum configuration file:
# cd /tmp
CentOS Linux v6.x user type the following command:
# wget http://nginx.org/packages/centos/6/noarch/RPMS/nginx-release-centos-6-0.el6.ngx.noarch.rpm
# rpm -ivh nginx-release-centos-6-0.el6.ngx.noarch.rpm

RHEL v6.x user type the following command:
# wget http://nginx.org/packages/rhel/6/noarch/RPMS/nginx-release-rhel-6-0.el6.ngx.noarch.rpm
# rpm -ivh nginx-release-rhel-6-0.el6.ngx.noarch.rpm

Sample outputs:

warning: nginx-release-rhel-6-0.el6.ngx.noarch.rpm: Header V4 RSA/SHA1 Signature, key ID 7bd9bf62: NOKEYPreparing...                ########################################### [100%]   1:nginx-release-rhel     ###########################################

Step #2: Install nginx web-server

Type the following yum command to install nginx web-server:
# yum install nginx
Sample outputs:

Loaded plugins: product-id, rhnplugin, security, subscription-managerUpdating certificate-based repositories.Unable to read consumer identitynginx                                                    | 1.3 kB     00:00nginx/primary                                            | 4.8 kB     00:00nginx                                                                     33/33Setting up Install ProcessResolving Dependencies--> Running transaction check---> Package nginx.x86_64 0:1.2.6-1.el6.ngx will be installed--> Finished Dependency Resolution Dependencies Resolved ================================================================================ Package        Arch            Version                    Repository      Size================================================================================Installing: nginx          x86_64          1.2.6-1.el6.ngx            nginx          361 k Transaction Summary================================================================================Install       1 Package(s) Total download size: 361 kInstalled size: 835 kIs this ok [y/N]: yDownloading Packages:nginx-1.2.6-1.el6.ngx.x86_64.rpm                         | 361 kB     00:00Running rpm_check_debugRunning Transaction TestTransaction Test SucceededRunning TransactionWarning: RPMDB altered outside of yum.  Installing : nginx-1.2.6-1.el6.ngx.x86_64                                 1/1---------------------------------------------------------------------- Thanks for using NGINX! Check out our community web site:* http://nginx.org/en/support.html If you have questions about commercial support for NGINX please visit:* http://www.nginx.com/support.html ----------------------------------------------------------------------Installed products updated.  Verifying  : nginx-1.2.6-1.el6.ngx.x86_64                                 1/1 Installed:  nginx.x86_64 0:1.2.6-1.el6.ngx Complete!


Step #3: Turn on nginx service

Type the following command:
# chkconfig nginx on

How do I start / stop / restart nginx web-server?

Type the following commands:
# service nginx start
# service nginx stop
# service nginx restart
# service nginx status
# service nginx reload

配置文件的目录;

Step #4: Configuration files

  1. Default configuration directory: /etc/nginx/ nginx的目录
  2. Default SSL and vhost config directory: /etc/nginx/conf.d/   SSL协议 和 虚拟机
  3. Default log file directory: /var/log/nginx/ 日志目录
  4. Default document root directory: /usr/share/nginx/html 默认的首页
  5. Default configuration file: /etc/nginx/nginx.conf nginx的配置文件
  6. Default server access log file: /var/log/nginx/access.log  nginx的访问日志
  7. Default server access log file: /var/log/nginx/error.log nginx的错误日志

To edit the nginx configuration file, enter:
# vi /etc/nginx/nginx.conf根据你的系统的cpu数量设置 worker_processes  数量
Set or update worker_processes as follows (this must be set to CPU(s) in your system. Use the lscpu | grep ‘^CPU(s)’ command to list the number of CPUs in the server)

worker_processes  2;

Turn on gzip support:

gzip  on;

Save and close the file. Edit the file /etc/nginx/conf.d/default.conf, enter:
# vi /etc/nginx/conf.d/default.conf
Set IP address and TCP port number:

配置监听地址和端口号
    listen       202.54.1.1.1:80;


Set server name: 

    server_name  www.cyberciti.biz;

Save and close the file. Start the server:
# service nginx start

Verify that everything is working:
# netstat -tulpn | grep :80
# ps aux | grep nginx

Firewall configuration: Open TCP port # 80

Edit the file /etc/sysconfig/iptables, enter:
# vi /etc/sysconfig/iptables
Add the following lines, ensuring that they appear before the final LOG and DROP lines for the INPUT chain to open port 80:

-A INPUT -m state --state NEW -p tcp --dport 80 -j ACCEPT

Save and close the file. Finally, restart the firewall:
# service iptables restart

参考地址:http://www.cyberciti.biz/faq/install-nginx-centos-rhel-6-server-rpm-using-yum-command/

0 0
原创粉丝点击