CentOS7.9 nginxのインストール方法

環境
CentOS 7.9

操作方法
1.nginxのインストール
yumリポジトリ情報の追加を行います。
#vi /etc/yum.repos.d/nginx.repo

以下の内容を記載

[nginx]
name=nginx repo
baseurl=http://nginx.org/packages/centos/7/$basearch/
gpgcheck=0
enabled=1

2.インストールを実施します。
yum install -y nginx

3.Firewallの設定を追加します。

# firewall-cmd --add-service=http --zone=public --permanent
# firewall-cmd --reload

4.Firewallの設定が完了しましたらサービス起動します。

# systemctl start nginx
# systemctl enable nginx

5.サービス起動後、http://<サーバーのIP>へアクセスします。

6.バージョンを指定してnginxをインストールします

yum --showduplicates list nginx

例えば1.12.0を使用したい場合は、インストールコマンドを実行する際に以下のように指定して実行します。
yum install -y nginx-1.12.0

CentOS 7

Posted by arkgame