DEV Community

tShan
tShan

Posted on

Installing Apache Web Server

Installing Apache Web Server on Linux Mint

to check the update
$ sudo apt-get update

this command to install Apache.
$ sudo apt-get install apache2 apache2-utils

The following commands will cause Apache to start when the server starts-up and start the service for the first time:
$ sudo systemctl enable apache2
$ sudo systemctl start apache2

Verify Apache Service Status on your Linux

$ hostname -i (give you the ip address)

enter the ip address in the web browser

"Ubuntu Logo Apache2 Ubuntu Default Page"

Top comments (0)