Horje
stop apache server Code Example
restart apache 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
stop apache server
# On Ubuntu
## Start command ##
systemctl start apache2.service
## Stop command ##
systemctl stop apache2.service
## Restart command ##
systemctl restart apache2.service
ubuntu 14 apache2 graceful restart
# 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
how to start a web server linux
 #how to start a web server linux
 sudo service apache2 start
how to stop a web server linux
# how to stop a web server linux
sudo service apache2 stop
stop apache service
sudo systemctl stop apache2
Source: linuxize.com




Shell

Related
uninstall node js in ubunt Code Example uninstall node js in ubunt Code Example
how to check mongodb status in ubuntu Code Example how to check mongodb status in ubuntu Code Example
how to check laptop serial number in ubuntu Code Example how to check laptop serial number in ubuntu Code Example
uninstall node js and npm ubuntu Code Example uninstall node js and npm ubuntu Code Example
git user.name user.email Code Example git user.name user.email Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
24