Answers for "how to start apache2 in ubuntu 18.04"

19

start apache2 ubuntu

# Restart Apache 2 server on Linux/Unix
sudo service apache2 restart

# Start Apache 2 server on Linux/Unix
sudo service apache2 start

# Stop Apache 2 server on Linux/Unix
sudo service apache2 stop

# Reload Apache 2 server on Linux/Unix "No downtime!"
sudo service apache2 reload
Posted by: Guest on July-27-2020
0

How To Install the Apache Web Server on Ubuntu 18.04

# install apache 
sudo yum update -y
sudo yum install -y httpd httpd-tools mod_ssl
sudo systemctl start httpd
sudo systemctl enable httpd
Posted by: Guest on August-05-2021

Code answers related to "how to start apache2 in ubuntu 18.04"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language