「CentOS Stream 8」apacheをインストールする方法

OSバージョンを確認
# cat /etc/redhat-release
CentOS Stream release 8
apacheをインストール
# dnf install httpd

略
ダウンロードサイズの合計: 2.3 M
インストール後のサイズ: 6.0 M
これでよろしいですか? [y/N]: # y
略
インストール済み:
  apr-1.6.3-11.el8.x86_64
  apr-util-1.6.1-6.el8.x86_64
  apr-util-bdb-1.6.1-6.el8.x86_64
  apr-util-openssl-1.6.1-6.el8.x86_64
  centos-logos-httpd-82.0-2.el8.noarch
  httpd-2.4.37-30.module_el8.3.0+462+ba287492.0.1.x86_64
  httpd-filesystem-2.4.37-30.module_el8.3.0+462+ba287492.0.1.noarch
  httpd-tools-2.4.37-30.module_el8.3.0+462+ba287492.0.1.x86_64
  mod_http2-1.15.7-2.module_el8.3.0+477+498bb568.x86_64

完了しました!

2.起動
# systemctl enable –now httpd
Created symlink /etc/systemd/system/multi-user.target.wants/httpd.service → /usr/lib/systemd/system/httpd.service.

3.バージョン確認
# httpd -v
Server version: Apache/2.4.37 (centos)
Server built: Jul 31 2020 20:44:41

3.firewallを設定
# firewall-cmd –add-port=80/tcp –zone=public –permanent
success

再起動
# firewall-cmd –reload
success

4.動作確認
# vim /var/www/html/index.html
study skill in arkgame.com and you will become strong

# curl http://127.0.0.1/index.html
study skill in arkgame.com and you will become strong

CentOS

Posted by arkgame