Reads:1015Replies:0
Installing TikiWiki in Apache Tomcat Server1.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. |
|