How to install Akaunting on Linux Mint Latest

Akaunting is a free and open-source accounting software. It is designed for small businesses and entrepreneurs to manage their finances. This tutorial will guide you on how to install Akaunting on Linux Mint Latest.

Prerequisites

Before we begin, ensure that your Linux Mint Latest is up to date.

sudo apt update
sudo apt upgrade

Make sure your system has Apache, PHP, MySQL or MariaDB installed.

sudo apt install apache2 php mariadb-server mariadb-client php-mysql php-xml php-ldap unzip wget

Step 1 — Download Akaunting

Visit the Akaunting website download page and choose the appropriate package for Linux.

Alternatively, you can download the package using the command-line.

wget https://github.com/akaunting/akaunting/releases/download/2.3.18/akaunting-2.3.18.zip

Step 2 — Unzip Akaunting package

Once you successfully download Akaunting, extract the file to /var/www/html/ directory.

sudo unzip akaunting-2.3.18.zip -d /var/www/html/

Then, change the ownership of the extracted folder to the www-data user.

sudo chown www-data:www-data /var/www/html/akaunting/ -R

Step 3 — Create Database

(Assuming you have root access)

Create a new database, user, and grant privileges to that user.

sudo mysql -u root -p
CREATE DATABASE akaunting;
CREATE USER 'akaunting'@'localhost' IDENTIFIED BY 'password';
GRANT ALL PRIVILEGES ON akaunting.* TO 'akaunting'@'localhost';
FLUSH PRIVILEGES;
EXIT;

Step 4 — Configure Akaunting

Open a browser and visit http://localhost/akaunting/ to start the installation process.

  1. Select the language
  2. Specify the database connection details
  3. Enter the email address and password of the admin account

Then click on the install button.

Step 5 — Login

After you have installed Akaunting, you will be redirected to the login page. Enter your email address and password to access the dashboard.

Conclusion

Congratulations, you have successfully installed Akaunting on Linux Mint Latest. Now you can start using Akaunting for your business accounting.

If you want to self-host in an easy, hands free way, need an external IP address, or simply want your data in your own hands, give IPv6.rs a try!

Alternatively, for the best virtual desktop, try Shells!