Practical 10
Configuring Web(apache) and FTP Serverssq We will configure the Web server and FTP server in our system(Ubuntu 20.04LTS). We will make use of the virtual machine. You can get help related to ftp command with the command <man ftp>. Configuring Apache Web Server Q. What is an Apache web server? - one of the most widely used open-source web server software programs in the world. It's a critical component of the technology stack that powers the World Wide Web. The Apache Software Foundation develops and maintains Apache. Q. Which port number is used by the Apache webserver by default? - The default port number used by the Apache web server for unencrypted HTTP traffic is port 80. 1. Install the Apache webserver with the command <sudo apt install apache2> 2. Once the installation is done, use the command <sudo systemctl status apache2> to check the server's status. You should see the output similar to the picture below. Note: If you get the status inacti...