GNU/Linux >> Linux の 問題 >  >> Linux

CentOS6にNginxをインストールします

この記事では、yumを使用してCentOS®6にNginx®をインストールする方法について説明します。 。

  1. 次のwgetを使用します リストされたアドレスからNginxリポジトリをプルしてインストールするコマンド:

    [root@server-01 ~]# wget https://nginx.org/packages/centos/6/noarch/RPMS/nginx-release-centos-6-0.el6.ngx.noarch.rpm
    
  2. 次のコマンドを使用して、RPMパッケージ nginx-release-centos-6-0.el6.ngx.noarch.rpmをインストールします。 :

    [root@server-01 ~]# rpm -ivh nginx-release-centos-6-0.el6.ngx.noarch.rpm
    

    注: 次のリストは、このコマンドで使用されるオプションについて説明しています。

    • -i :パッケージをインストールします
    • -v :詳細モード(Nicer表示)
    • -h :開梱中の進行状況を記録するためにハッシュマークを含めます
  3. 次のコマンドを使用して、by yumを使用してNginxをインストールします :

    [root@server-01 ~]# yum install nginx
    
  4. 次のコマンドを使用して、再起動後にNginxサービスが自動的に開始するように設定し、Nginxサービスをオンにします。

    [root@server-01 ~]# chkconfig nginx on
    [root@server-01 ~]# service nginx start
    
  5. 次のコマンドを使用して、Nginxサービスがオンになっていることを確認します。

    [root@server-01 ~]# service nginx status
    nginx (pid  3020) is running...
    
  6. 次のコマンドを使用して、ファイアウォールに変更を加えて保存します。

     [root@server-01 ~]# iptables -I INPUT -p tcp --dport 80 -m conntrack --ctstate NEW,ESTABLISHED -j ACCEPT
     [root@server-01 ~]# service iptables save
     iptables: Saving firewall rules to /etc/sysconfig/iptables:[  OK  ]
    

    注: ファイアウォールに変更を加えないと、最後の手順を実行したときに「ホストへのルートがありません」というメッセージが表示される場合があります。

  7. WebブラウザでサーバーのIPアドレスに移動します。 Nginxがインストールされ、正しく実行されていることを確認するために、次のメッセージが表示されます。

    Welcome to nginx!
    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.
    

Linux
  1. CentOS8にMongoDBをインストールする方法

  2. CentOS7にNginxをインストールする方法

  3. CentOS7にngx_pagespeedを使用してNginxをインストールします

  1. CentOS8にNginxをインストールする方法

  2. CentOS7にMagento2.1をインストールする方法

  3. CentOS7にStreamaをインストールする方法

  1. CentOS7にRestyaboardをインストールする方法

  2. CentOS8にWebminをインストールする方法

  3. CentOS8にMagentoをインストールする方法