1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

ちゃんと公式ドキュメントを参考にしたNginx構築手順

Last updated at Posted at 2020-05-23

構築環境

$ cat /etc/redhat-release
CentOS Linux release 8.1.1911 (Core)

Nginxインストール

nginx公式手順

事前準備

リポジトリと拡張パッケージ管理を操作するためのツールをインストールする

$ yum install yum-utils

セットアップ設定ファイルの作成

yumリポジトリーをセットアップするため、以下の内容で/etc/yum.repos.d/nginx.repoという名前のファイルを作成する

/etc/yum.repos.d/nginx.repo
[nginx-stable]
name=nginx stable repo
baseurl=http://nginx.org/packages/centos/$releasever/$basearch/
gpgcheck=1
enabled=1
gpgkey=https://nginx.org/keys/nginx_signing.key
module_hotfixes=true

[nginx-mainline]
name=nginx mainline repo
baseurl=http://nginx.org/packages/mainline/centos/$releasever/$basearch/
gpgcheck=1
enabled=0
gpgkey=https://nginx.org/keys/nginx_signing.key
module_hotfixes=true

使用するNginxパッケージのリポジトリを有効化する

安定版のNginxパッケージをインストールする場合は、安定版のリポジトリを有効にする

$ yum-config-manager --enable nginx-stable

最新版のNginxパッケージをインストールする場合は、最新版のリポジトリを有効にする

$ yum-config-manager --enable nginx-mainline

Nginxをインストールする

以下のコマンドで、Nginxをインストールする

$ yum install nginx

Nginxの自動起動設定を有効にする

$ systemctl enable nginx.service

Nginxを起動する

$ systemctl start nginx

インストール完了!

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?