sudo zypper update
1.sudo zypper install apache2
2.sudo systemctl start apache2
3.By default, Apache will not automatically start after installed.
You can start it with
systemctl start apache2
4.And enable auto start at boot time with:
sudo systemctl enable apache2
5.Check its status:
systemctl status apache2
then the auto start is enabled
6.Check Apache version:
httpd…