Friday, July 2, 2021

How to install Apache Web browser in XUBUNTU?

Apache web server is a popular web server we can use easily.
  • Open Terminal Emulator you use.
  • Run Update command.
    • sudo apt-get update
  •  Install Apache.
    • sudo apt-get install apache2
  • Start the service.
    • sudo service apache2 start
  • Check whether It's working or not
    • http://localhost/

 Use these command to start, stop and restart.

  • sudo service apache2 start
  • sudo service apache2 restart
  • sudo service apache2 stop

to get status of apache server.

  • sudo service apache2 status

 



No comments:

Post a Comment

How to run a PHP file on Browser using Terminal?

 After You create a PHP file,  Open Terminal Go to the folder contains your PHP file eg: think you created  a folder named PHP on desktop an...