[Centos 8] Cara Install Apache di Centos 8
Minggu, 03 September 2023
Tulis Komentar
“Cara Install Apache di Centos 8 untuk Pemula”
Apache HTTP Server atau lebih singkat disebut Apache adalah perangkat lunak free/open source untuk web server yang tersedia dalam berbagai sistem operasi.
Apache dikembangkan dan dikelola oleh komunitas pengembang terbuka di bawah naungan Apache Software Foundation.
Cara install apache web server di centos 8
- Install Apache
dnf install httpd -y systemctl enable --now httpd systemctl status httpd
- Masukan service di firewalld
firewall-cmd --add-service=http --permanent firewall-cmd --reload firewall-cmd --list-services
http://ipaddr
- Coba test html
cd /var/www/html/ mkdir -p test cd test echo "<h1>hello world</h1>" > index.html
- Akses web
http://ipaddr/test


Belum ada Komentar untuk "[Centos 8] Cara Install Apache di Centos 8"
Posting Komentar