GAVASKAR
Intern
Intern
  • UID9274
  • Fans0
  • Follows2
  • Posts12
Reads:1015Replies:0

Installing TikiWiki in Apache Tomcat Server

Created#
More Posted time:Feb 18, 2022 21:02 PM

1.Install Apache Web Server
-sudo apt install apache2
-systemctl start apache2
-systemctl enable apache2
2.The Apache web server is up and running, check using the command below.
-systemctl status apache2
-It will display the below screen if Apache is installed correctly

3.open the HTTP and HTTPS services on the ufw firewall as below.
-sudo ufw allow http
-sudo ufw allow https
-sudo ufw allow ssh
-sudo ufw enable
6.To verify the installation of Apache web server and ufw firewall configuration, visit the server IP address using your web browser.

http://http://39.98.60.251/

And you will get the default index.html of Apache webserver.

Guest