This article explains how to install Ajenti on Ubuntu Linux.
Ajenti is a web-based system configuration tool for administrators. With Ajenti, administrators can administer and manage Linux servers, including Ubuntu, easily from a web browser with almost complete system control.
Ajenti is a web-based system configuration tool for Linux system administrators. It allows you to manage and administer Linux servers, including Ubuntu, from a web browser with almost complete system control.
With Ajenti, you can manage user accounts, system settings, aliases, and services via a single web interface, making it a fast and secure way to manage a remote Linux box anytime.
It removes the complexity of managing system configuration files on Linux systems, making it a handy tool for new users and students. This brief tutorial will show you how to install Ajenti on Ubuntu 16.04 to provide system administrators with an easy management interface.
When you’re ready to install, continue below with the steps:
Add Ajenti Repository to Ubuntu
Since Ajenti is the primary system configuration tool, you should install it on Ubuntu. Run the commands below to add the Ajenti repository key to Ubuntu.
cd /tmp && wget http://repo.ajenti.org/debian/key -O- | sudo apt-key add -
After that, run the commands below to add the Ajenti package repository to Ubuntu.
sudo sh -c 'echo "deb http://repo.ajenti.org/ng/debian main main ubuntu" >> /etc/apt/sources.list.d/ajenti.list'
Install Ajenti
Now that the Ajenti repository has been added to Ubuntu, run the commands below to update and install Ajenti.
sudo apt update && sudo apt install ajenti
After installing, the commands below can stop and enable Ajenti to start when the server boots up.
sudo systemctl stop ajenti.service sudo systemctl start ajenti.service sudo systemctl enable ajenti.service
Access Admin Portal
After installing Ajenti, open your web browser and browse to the IP address followed by port 8000.
Ex. https://192.168.100.1:8000
Replace the IP address with your own.
That should bring up the Ajenti admin portal, where you should be able to log in with these credentials:
Username: root Password: admin

After logging on, you can begin configuring your server easily from your browser.
Enjoy!
You may also like the post below:
Leave a Reply