Categories: Development

Installing Directadmin panel on Centos 8

Installing Directadmin web hosting control panel on a Centos 8 VPS.

Directadmin is becoming ever popular due to its affordability and simple to use interface, you can also get a Directadmin license for free with many VPS hosts.

This guide was made using an Inception hosting KVM and a free provided Directadmin license.

SSH into the VPS as root, Check packages for updates

sudo yum check-update

Run the updates and refresh the packages

sudo yum update

Now do a reboot

sudo reboot

Download and save the Directadmin installation script

wget -O setup.sh https://www.directadmin.com/setup.sh

Set the correct file permissions on the script

chmod 755 setup.sh

Any non installed required packages will be automatically installed when the script is run.

If you have the correct hostname, server IP and operating system for your Directadmin license run the install script

./setup.sh auto

If these are incorrect you will need to update them to proceed.

The installing process will take a while (several minutes), once it has been completed you will see information for logging in to the Directadmin hosting panel.

Save these details, the panel login address is http://IP:2222

Now you can begin to configure and set up the Directadmin hosting.

 

Share

Recent Posts

Kennington reservoir drained drone images

A drained and empty Kennington reservoir images from a drone in early July 2024. The…

2 years ago

Merrimu Reservoir drone images

Merrimu Reservoir from drone. Click images to view larger.

2 years ago

FTP getting array of file details such as size using PHP

Using FTP and PHP to get an array of file details such as size and…

3 years ago

Creating Laravel form requests

Creating and using Laravel form requests to create cleaner code, separation and reusability for your…

3 years ago

Improving the default Laravel login and register views

Improving the default Laravel login and register views in such a simple manner but making…

3 years ago

Laravel validation for checking if value exists in the database

Laravel validation for checking if a field value exists in the database. The validation rule…

3 years ago