การติดตั้ง Apache Web Server บน Alma Linux 9
1. ติดตั้งด้วยคำสั่ง
dnf install httpd -y
2. สั่ง Start Apache HTTPD Server พร้อมกำหนดให้ทำงานตอนบู๊ตระบบ
systemctl start httpd
systemctl enable httpd
3. ตรวจสอบสถานะ
systemctl status httpd
4. กรณีเปิดใช้งาน Firewall ให้กำหนดให้ Web Server ผ่านได้
firewall-cmd –permanent –zone=public –add-service=http
firewall-cmd –permanent –zone=public –add-service=https
firewall-cmd –reload
* หรือหากแค่ทดสอบสามารถปิดใช้งาน firewalld ก่อนได้
systemctl stop firewalld
————
5. ทดสอบเรียกใช้งาน Web Server
http://IP_Address
—
Write by SysAdmin Knowledge
https://www.sysadmin.in.th
January 17, 2023