การติดตั้ง Apache Web Server บน Rocky Linux 9

1. ทำการอัปเดทระบบ
sudo dnf update

2. ติดตั้งแพ็กเกจ Apache HTTPd Server
sudo dnf install httpd

3. กำหนดให้ Apache ทำงานตอนบู๊ตระบบ
sudo systemctl enable httpd –now
sudo systemctl start httpd
sudo systemctl status httpd

4. กำหนดพอร์ตให้ผ่าน Firewalld
Add Apache server to firewall
sudo firewall-cmd –permanent –zone=public –add-service=http
sudo firewall-cmd –permanent –zone=public –add-service=https
sudo firewall-cmd –reload
sudo firewall-cmd –list-all


5. ตรวจสอบสถานะ Apache
sudo apachectl status
หรือ
ps -eo comm,etime,user | grep httpd
ps -eo comm,etime,user | grep root | grep httpd
ps -ef | egrep “(UID|httpd)”

6. ตรวสอบไฟล์คอนฟิก
sudo apachectl configtest

7. ทดสอบเรียกใช้งานเว็บไซต์จากเว็บเบราเซอร์ฝั่ง Client

ทดสอบ
http://IP_Address
or
http://127.0.0.1



Write by SysAdmin Knowledge
https://www.sysadmin.in.th
February 1, 2023


 

Explore More

การติดตั้ง Web Server ด้วย Nginx บน Rocky Linux

การติดตั้ง Nginx บน Rocky Linux 1. ทำการอัปเดทระบบ sudo dnf update 2. ติดตั้งแพ็กเกจ Nginx sudo dnf install nginx 3. ทำการสต๊าทระบบพร้อมกำหนดให้ทำงานตอนบู๊ตระบบ sudo systemctl start nginx sudo systemctl enable –now nginx 4. ตรวจสอบสถานะ […]

การติดตั้ง Let’s Encrypt SSL Certificate บน Apache

การติดตั้ง Let’s Encrypt SSL Certificate บน Apache ขั้นตอน 1. ใช้คำสั่ง ssh เพื่อเข้าสู่ Server ในที่นี้ทดสอบชื่อ DNS แบบเต็มเป็น  www.sysadmin.test sudo ssh -l root www.sysadmin.test หรือหากเข้าระบบด้วยชื่อผู้ใช้ให้สั่งเป็น sudo ssh -l user_name www.sysadmin.test sudo -s […]

การติดตั้ง DHCP Server บน Rocky Linux 9

การติดตั้ง DHCP Server บน Rocky Linux 9 1. ติดตั้งแพ็กเกจ dhcp-server sudo dnf update sudo dnf install dhcp-server -y sudo dnf install dnf-utils -y 2. เข้าปรับแต่งคอนฟิก (กำหนดโซน ip ที่ต้องการให้เครื่องลูกข่ายใช้งาน) sudo nano […]