dnf search apache
dnf install httpd
rpm -ql httpd | grep etc/ rpm -qc httpd
vi /etc/httpd/conf/httpd.conf
apachectl configtest
systemd-analyze security httpd.service
systemctl enable --now httpd.service
service httpd status
ps ax | grep httpd
lsof -i :80
oder
ss -puta '( dport = :http or sport = :http )'
wget -O /dev/null http://localhost
zypper search apache
zypper install apache2
rpm -ql apache2 | grep etc/ rpm -qc apache2
vi /etc/apache2/httpd.conf
apache2ctl configtest
systemd-analyze security apache2.service
systemctl enable --now apache2.service
service apache2 status
ps ax | grep httpd
lsof -i :80
oder
ss -puta '( dport = :http or sport = :http )'
wget -O /dev/null http://localhost
apt search apache
apt install apache2
dpkg -L apache2 | grep etc/ dpkg -s apache2 | grep etc/
vi /etc/apache2/apache2.conf
apache2ctl configtest
service apache2 restart
service apache2 status
ps ax | grep apache
lsof -i :80
oder
ss -puta '( dport = :http or sport = :http )'
wget -O /dev/null http://localhost