How to Install Precurio CRM on CentOS 7.5
- 00:36 rpm -q centos-release
- 00:55 mysql -u root -p
- 02:08 wget https://excellmedia.dl.sourceforge.net/project/precurio/version%202.1/precurio.zip
- 02:20 unzip precurio.zip
- 02:31 mv precurio /var/www/
- 02:41 chown -R apache:apache /var/www/precurio
- 02:54 chmod -R 755 /var/www/precurio
- 03:10 vim /etc/httpd/conf.d/precurio.conf
- 04:14 systemctl restart httpd
Installation of Precurio CRM on CentOS 7.5
Precurio is an affordable Intranet solution that focuses on providing its users with unique intranets and all the features they need. Precurio is available for purchase and you can choose from their packages depending on your needs. This tutorial covers the installation of Precurio CRM on CentOS 7.5.
Requirements for Precurio CRM:
Apache
MariaDB
PHP and its modules
yum install -y php php-mbstring php-mcrypt php-xml php-gd php-curl php-cli php-soap php-mysql php-zip php-ldap
Installation procedure
Before you begin, check your version CentOS by using the following command.
[root@linuxhlep ~]# rpm -q centos-release
centos-release-7-5.1804.5.el7.centos.x86_64
configure the MySQL database. Log into MySQL as a root user and make the necessary settings.
[root@linuxhlep ~]# mysql -u root -p
Enter password:
Welcome to the MariaDB monitor. Commands end with ; or \g.
Your MariaDB connection id is 10
Server version: 5.5.60-MariaDB MariaDB Server
Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
MariaDB [(none)]> create database precurio;
Query OK, 1 row affected (0.00 sec)
MariaDB [(none)]> create user 'preuser'@localhost identified by '123456';
Query OK, 0 rows affected (0.00 sec)
MariaDB [(none)]> grant all privileges on precurio.* to 'presuer'@localhost;
Query OK, 0 rows affected (0.01 sec)
MariaDB [(none)]> flush privileges;
Query OK, 0 rows affected (0.00 sec)
MariaDB [(none)]> Ctrl-C -- exit!
Aborted
Once the database configuration is done, you shall download the Precurio CRM with the help of the following command.
[root@linuxhlep ~]# wget https://excellmedia.dl.sourceforge.net/project/precurio/version%202.1/precurio.zip
--2019-04-27 15:28:27-- https://excellmedia.dl.sourceforge.net/project/precurio/version%202.1/precurio.zip
Resolving excellmedia.dl.sourceforge.net (excellmedia.dl.sourceforge.net)... 202.153.32.19
Connecting to excellmedia.dl.sourceforge.net (excellmedia.dl.sourceforge.net)|202.153.32.19|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 16132056 (15M) [application/octet-stream]
Saving to: ‘precurio.zip’
100%[==========================================================>] 16,132,056 628KB/s in 29s
2019-04-27 15:29:03 (544 KB/s) - ‘precurio.zip’ saved [16132056/16132056]
Once the download is completed extract the download package using unzip command.
[root@linuxhlep ~]# unzip precurio.zip
Archive: precurio.zip
creating: precurio/
inflating: precurio/.htaccess
creating: precurio/application/
creating: precurio/application/admin/
creating: precurio/application/admin/controllers/
inflating: precurio/application/admin/controllers/ApprovalController.php
inflating: precurio/application/admin/controllers/BackupController.php
inflating: precurio/application/admin/controllers/BaseController.php
inflating: precurio/application/admin/controllers/BugController.php
.
.
.
inflating: precurio/public/uploads/tmp/Thumbs.db
extracting: precurio/public/uploads/upgrade.png
creating: precurio/public/uploads/workflow/
inflating: precurio/public/uploads/workflow/Thumbs.db
inflating: precurio/README.txt
inflating: precurio/UPGRADE.txt
Move the Precurio CRM directory to apache root directory.
[root@linuxhlep ~]# mv precurio /var/www/
Set the ownership and permission for Precurio CRM by using the following command.
[root@linuxhlep ~]# chown -R apache:apache /var/www/precurio
[root@linuxhlep ~]# chmod -R 755 /var/www/precurio
Configure the virtualhost for accessing the Precurio CRM.
[root@linuxhlep ~]# vim /etc/httpd/conf.d/precurio.conf
<Virtualhost *:80>
Servername www.linuxhelp1.com
Documentroot /var/www/precurio
<Directory /var/www/precurio>
Allowoverride all
allow from all
</Directory>
</virtualhost>
Restart the Apache service by using the following command.
[root@linuxhlep ~]# systemctl restart httpd
You shall now switch to your browser and enter your domain name.

Configure the general settings and click ‘Save’

Configure the database and check the connection click ‘Ok'
Configure the live server.
Configure the mail settings.
Verify the module setting and click 'Finish.'
Configure the Admin user account setup.
Once all the step is completed click here to login
The installation is complete. login using admin credentials from here.
This is the dashboard of Precurio CRM.
With this, the method to install Precurio CRM on CentOS 7.5 comes to an end.
Comments ( 0 )
No comments available