「CentOS Stream8」Apacheのポート番号を変更する方法

2021年3月17日

1.OSバージョン確認
# cat /etc/redhat-release
CentOS Stream release 8

2.設定ファイルの変更
# vi /etc/httpd/conf/httpd.conf
修正前
Listen 80
修正後
8093
3.Firewallを設定
# firewall-cmd –add-port=8093/tcp –zone=public –permanent
success
# firewall-cmd –reload
success

4.apacheを再起動
停止
# systemctl stop httpd
起動
# systemctl start httpd

5.ブラウザ確認
http://192.168.229.129:8093/

CentOS

Posted by arkgame