1. yum ソースの設定:
ファイルの作成:/etc/yum.repos.d/nginx.repo
touch /etc/yum.repos.d/nginx.repo
ファイルを編集します。
vi /etc/yum.repos.d/nginx.repo
[nginx] name=nginx repo baseurl=http://nginx.org/packages/centos/$releasever/$basearch/ gpgcheck=0 enabled=1
yum list |grep nginx
2. yum を介して nginx をインストールする
次の手順を実行して yum をインストールします:yum -y install nginx
rpm -q nginx
3. nginx
service nginx start
ps -aef|grep nginx
以上がcentos6.5にNginxをインストールする方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。