In this video, I'm going to install ISPConfig, a very popular server management tool. I'll explain the prerequisites and the step-by-step process for its correct installation on an Ubuntu Server.
IMPORTANT: To avoid problems later with apt functions, do not delete the line for your local server in the hosts file. For example, if I deleted 127.0.1.1 miguel_osorio, you must add it back afterward.
Edit the file in nano: `sudo nano /etc/netplan/01-netcfg.yaml`
Example for 01-netcfg.yaml:
network:
version: 2
renderer: networkd
ethernets:
enp0s3:
dhcp4: no
addresses:
192.168.1.50/24
routes:
to: default
via: 192.168.1.1
nameservers:
addresses: [8.8.8.8, 1.1.1.1]
Save and Apply: `sudo netplan apply`
Configure the hostname: `sudo hostnamectl set-hostname server1.example.local`
Verify: `hostname -f`
Access the hosts file and add the static IP address you created WITHOUT removing the localhost IP or your local server's IP address: `sudo nano /etc/hosts`
Install PHP: `sudo apt install` -y php php-cli php-common php-mbstring php-zip php-curl php-gd php-intl php-soap php-xml php-mysql
Access your ISPconfig Panel using your IP address: 8080
Remember to follow my Ubuntu | Linux video playlist for more content.
• Linux | Ubuntu