How To Setup LogicalDOC In Ubuntu 15.04

LogicalDOC is a Document Management System. It is useful for all kind of small and medium enterprises, and it could play a very important role in knowledge resource management of Educational Organizations.

This tutorial describes how to install LogicalDOC in Ubuntu 15.04

Prerequisites

Minimum System requirement: 2.0 GHz Processor, 1 GB RAM, minimum 10 GB of Storage.

Minimum Software requirements: MySQL, JAVA jdk7, Ubuntu 9/RHEL 6/CentOS 6/Suse Enterprise Linux 10.

Installation

We will be using Ubuntu 15.04 Desktop OS 64bit for this demonstration.

First switch to root user using command:

su

1. Install mysql.

apt-get install mysql-server

logicaldoc_mysql

Assign password for mysql root user:

mysql_logicaldoc_passwd

Now create database schema for logicaldoc.

mysql -u root -p <press enter, give password>

Create database with name “logicaldoc”

mysql> CREATE DATABASE logicaldoc;

create_database

And create a user called “logicaldoc”.

mysql> CREATE USER logicaldoc;

Set password for user “logicaldoc”.

mysql> SET PASSWORD FOR logicadoc@'%'=PASSWORD('P@ssw0rd');

Give all privileges to user “logicaldoc”

mysql> GRANT ALL PRIVILEGES ON logicaldoc.* TO logicaldoc@'%' identified by 'P@ssw0rd';

grant privileges

save and exit from the MySQL prompt.

Make sure you installed latest version of openJDK.

java -version

If you haven’t installed Java yet, refer the following link.

Install Community version of Logicaldoc from following this link.

I have tested this setup with Trail version of Logicaldoc, but the installation instructions are same for both.

Go to the download folder and  unzip this package, start installation.

java -jar logicaldoc-installer.jar

Select Language, and press ok.

1

Press next.

2

Accept Terms and Conditions, and press next.

3

Select installation path.

4

Keep default settings and press next.

5

Wait for the the process to get finished.

6

Provide relevant information, and press next.

7

Select your database and press next.

8

Provide data base credentials and press next.

9

Provide password and leave rest of the setting as default, and press next.

10

Leave default, press next.

11

This step will check database parameters, press next.

12

Installation is finished, press done.

13

Open your web browser and type: http://localhost:8080

Provide user id and password (default user: admin, default password: admin)Setup your server.

14 24

That’s it. Installation is finished. Have fun!