Open3

Amazon Linux 2023 で apache 起動

ei-showei-show

Amazon Linux 2 からの移行スクラップ。

install apache

dnf update -y
dnf upgrade -y
dnf install httpd
systemctl start httpd
systemctl enable httpd
ei-showei-show

disable selinux

getenforce
rpm -q grubby
grubby --update-kernel ALL --args selinux=0
reboot
getenforce
ei-showei-show

setting httpd

touch /var/www/html/index.html
chown apache:apache -R /var/www/html/
systemctl restart httpd