Pardus 19.5 Server

Liman on Pardus 19.5 Server

Liman supports Pardus 19.5 Server. The Liman package is in the Aciklab DEB repository. But it is recommended to add different repositories for other dependent packages (PHP and PostgreSQL).

1. Adding PostgreSQL 13.x on Pardus 19.5 Server

Liman MYS needs PostgreSQL 13.x version due to various corporate needs as infrastructure. Since there are no PostgreSQL 13.x packages in Ubuntu official repositories, the following repository must be added:

sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt buster-pgdg main" > /etc/apt/sources.list.d/pgdg.list'
sudo apt install gnupg2 ca-certificates -y
wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -
sudo apt update

2. Adding the Aciklab Repository where the Liman is located

With the following two commands, it is possible to add the repository to the system and to introduce the public key of this repository to the system.

echo "deb [arch=amd64] http://depo.aciklab.org/ buster main" | sudo tee /etc/apt/sources.list.d/acikdepo.list
sudo wget -qO - http://depo.aciklab.org/public.key | sudo apt-key add -

3. Installing the Liman from the repository

In order to install the current Liman from the repository, the following two commands are required.

sudo apt update
sudo apt install liman

4. Creating an admin password and entering the interface

The first thing to do after installation is to create an Administrator password. For this, we need the following two commands.

sudo su liman
sudo php /liman/server/artisan administrator

At the end of this step, you will see your username and password to log in from the Liman web interface. If you write the IP address of the server on which you installed the Liman on your web browser and log in with this information, you will be logged into the Web interface of the Liman.

Last updated