• Categories
    Category
  • Categories
    Category
  • News
  • Tutorials
  • Forums
  • Tags
  • Users
Tutorial Comments FAQ Related Articles

How to Install Epesi CRM on CentOS 7.5

  • 00:46 rpm -q centos-release
  • 01:02 mysql -u root -p
  • 02:20 wget https://excellmedia.dl.sourceforge.net/project/epesi/v1.8.2/epesi-1.8.2-20170430.zip
  • 02:46 unzip epesi-1.8.2-20170430.zip
  • 02:59 mv epesi-1.8.2-20170430 /var/www/epesi
  • 03:11 chown -R apache:apache /var/www/epesi
  • 03:27 chmod -R 755 /var/www/epesi
  • 03:40 vim /etc/httpd/conf.d/epesi.conf
  • 04:53 systemctl restart httpd
5592

Installation of Epesi CRM on CentOS 7.5

Epesi is a fully functional web CRM / ERP application to organize, store, access and share business records. It is an open source PHP/Ajax framework which means you can change It and develop it as you like. It allows you to manage your data precisely, flexible and easy, simplifying internal communication and making work-flow with more efficient. In this tutorial, we will cover the installation of Epesi CRM on CentOS 7.5

Requirements for Epesi CRM:

Apache

Maraidb

Php and its modules

php php-mbstring php-mcrypt php-xml php-gd php-curl php-cli php-soap php-mysql php-zip php-ldap

Installation procedure

You need to configure the LAMP setup For the Installation of epesi CMS If you dont have the Lamp setup Refer Here

Installation

Before you begin the installation, check the CentOS version by using the following command.

[root@linuxhlep ~]# rpm -q centos-release
centos-release-7-5.1804.5.el7.centos.x86_64

And then, 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 epesidb;
Query OK, 1 row affected (0.00 sec)

MariaDB [(none)]> create user 'epesiuser'@localhost identified by '123456';
Query OK, 0 rows affected (0.00 sec)

MariaDB [(none)]> grant all privileges on epesidb.* to 'epesiuser'@localhost;
Query OK, 0 rows affected (0.00 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 Epesi CRM with the help of the following command.

[root@linuxhlep ~]# wget https://excellmedia.dl.sourceforge.net/project/epesi/v1.8.2/epesi-1.8.2-20170430.zip
--2019-04-27 19:22:22--  https://excellmedia.dl.sourceforge.net/project/epesi/v1.8.2/epesi-1.8.2-20170430.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: 28955877 (28M) [application/octet-stream]
Saving to: ‘epesi-1.8.2-20170430.zip’
100%[==========================================================>] 28,955,877   305KB/s   in 1m 44s 
2019-04-27 19:24:10 (271 KB/s) - ‘epesi-1.8.2-20170430.zip’ saved [28955877/28955877]

Once the download is completed extract the download package using unzip command.

[root@linuxhlep ~]# unzip epesi-1.8.2-20170430.zip
Archive:  epesi-1.8.2-20170430.zip
   creating: epesi-1.8.2-20170430/
   creating: epesi-1.8.2-20170430/admin/
  inflating: epesi-1.8.2-20170430/admin/AdminIndex.php  
  inflating: epesi-1.8.2-20170430/admin/AdminModule.php  
   creating: epesi-1.8.2-20170430/admin/images/
  inflating: epesi-1.8.2-20170430/admin/images/admintools.css  
 extracting: epesi-1.8.2-20170430/admin/images/epesi-powered.png  
  inflating: epesi-1.8.2-20170430/admin/images/header-blue-hover.png  
  inflating: epesi-1.8.2-20170430/admin/images/header-blue.png  
.
.
.
  inflating: epesi-1.8.2-20170430/vendor/twig/twig/test/Twig/Tests/Profiler/Dumper/TextTest.php  
  inflating: epesi-1.8.2-20170430/vendor/twig/twig/test/Twig/Tests/Profiler/ProfileTest.php  
  inflating: epesi-1.8.2-20170430/vendor/twig/twig/test/Twig/Tests/RuntimeFactoryLoaderTest.php  
  inflating: epesi-1.8.2-20170430/vendor/twig/twig/test/Twig/Tests/TemplateTest.php  
  inflating: epesi-1.8.2-20170430/vendor/twig/twig/test/Twig/Tests/TemplateWrapperTest.php  
  inflating: epesi-1.8.2-20170430/vendor/twig/twig/test/Twig/Tests/TokenStreamTest.php  

Move the Epesi CRM directory to apache root directory.

[root@linuxhlep ~]# mv epesi-1.8.2-20170430 /var/www/epesi

Set the ownership and permission for Epesi CRM by using the following command.

[root@linuxhlep ~]# chown -R apache:apache /var/www/epesi
[root@linuxhlep ~]# chmod -R 755 /var/www/epesi

Configure the VirtualHost for accessing the Epesi CRM.

[root@linuxhlep ~]# vim /etc/httpd/conf.d/epesi.conf
<Virtualhost *:80>
        Servername www.linuxhelp1.com
        Documentroot /var/www/epesi
<Directory /var/www/epesi>
Allowoverride all
allow from all
</Directory>
</virtualhost>

Restart the Apache service by using the following command.

[root@linuxhlep ~]# systemctl restart httpd

Switch to browser and enter your domain name. snap1 First, choose the language. snap2 Configure the database and database username for Epesi. snap3 Then verify the web server configuration environment and continue with the installation. snap4 Give details of Administrator credentials and click 'Next'. snap5 And then you have to configure mail settings. snap6 Now the installation will begin after confirmation. snap7 Also, you need to configure for post-installation setup. snap8 snap9 You are now through with the installation, you will now be able to visit the dashboard of Epesi CRM. snap10 With this, the method to install Epesi CRM on CentOS 7.5 comes to an end.

Tags:
perlinjones
Author: 

Comments ( 0 )

No comments available

Add a comment

Frequently asked questions ( 5 )

Q

What is the Purpose of using the Epesi CRM

A

Epesi BIM (Business Information Manager) is a fully functional web CRM / ERP application to organize, store, access and share business records. It is an open source PHP/Ajax framework which

Q

What are the Alternative tools to Epesi CRM?

A

These are a few alternatives to Epesi CRM, such as Mautic, EspoCRM, SugarCRM, CiviCRM, Zoho CRM, etc.

Q

Can I purchase additional modules for my EPESI hosting installation?

A

Purchasing modules from EPESI Store is available to unlocked hosting installations. That means that in order to purchase any modules you have to upgrade and unlock your installation.

Q

Why is an Epesi CRM better than other hosting options?

A

Our hosting service means full compatibility with EPESI, competitive hosting parameters and the best and fastest troubleshooting. By choosing our service you also give direct support to EPESI

Q

What are the requirements for Epesi CRM?

A

The requirements for Epesi CRM
Apache
MariaDB
PHP and its modules

Related Tutorials in How to Install Epesi CRM on CentOS 7.5

Related Tutorials in How to Install Epesi CRM on CentOS 7.5

How To Install AnyDesk on Centos 7
How To Install AnyDesk on Centos 7
Apr 2, 2018
How to install Tiki Wiki CMS Groupware on CentOS 7
How to install Tiki Wiki CMS Groupware on CentOS 7
May 31, 2018
How to install PHP ImageMagick on CentOS 7
How to install PHP ImageMagick on CentOS 7
Nov 4, 2017
How to Upgrade and Downgrade the PHP Versions on CentOS 7.6
How to Upgrade and Downgrade the PHP Versions on CentOS 7.6
Jun 4, 2019
How to install Apache from Source Code on CentOS 7
How to install Apache from Source Code on CentOS 7
Oct 21, 2017
How to enable or disable repositories in CentOS
How to enable or disable repositories in CentOS
Mar 28, 2018
How to install AWStats on CentOS 7
How to install AWStats on CentOS 7
Dec 8, 2017
How to install Apache JMeter in CentOS 7
How to install Apache JMeter in CentOS 7
Mar 24, 2017

Related Forums in How to Install Epesi CRM on CentOS 7.5

Related Forums in How to Install Epesi CRM on CentOS 7.5

CentOS
connor class=
How To Completely Remove Apache package On CentOS 7.6
May 14, 2019
CentOS
ceriaimmaculate class=
setfacl : command not found
Jan 3, 2018
CentOS
mason class=
Error getting authority: Error initializing authority: Could not connect: No such file or directory (g-io-error-quark, 1)
Nov 20, 2018
CentOS
landon class=
Command to find SNMP Version
May 28, 2018
CentOS
arjitharon class=
cannot start minio service help
Mar 10, 2018
Apache tomcat
AadrikaAnshu class=
Cannot find ./catalina.sh The file is absent or does not have execute permission This file is needed to run this program
Jun 17, 2019
gitlab
caden class=
Insufficient space in download directory /var/cache/yum/x86_64/6/base/packages
Jul 22, 2019
OpenVAS
frank class=
Could not retrieve mirrorlist http://mirrorlist.centos.org/?release=7&arch=x86_64&repo=os&infra=stock error was 14: curl#6 - "Could not resolve host: mirrorlist.centos.org; Unknown error"
Dec 20, 2018
Back To Top!
Rank
User
Points

Top Contributers

userNamenaveelansari
135850

Top Contributers

userNameayanbhatti
92510

Top Contributers

userNamehamzaahmed
32150

Top Contributers

1
userNamelinuxhelp
31040

Top Contributers

userNamemuhammadali
24500
Can you help Sebastian ?
How to change non required to required field in SuiteCRM Custom/Default Modules

How to change not required to the required field in SuiteCRM Custom/Default Modules?

Networking
  • Routing
  • trunk
  • Netmask
  • Packet Capture
  • domain
  • HTTP Proxy
Server Setup
  • NFS
  • KVM
  • Memory
  • Sendmail
  • WebDAV
  • LXC
Shell Commands
  • Cloud commander
  • Command line archive tools
  • last command
  • Shell
  • terminal
  • Throttle
Desktop Application
  • Linux app
  • Pithos
  • Retrospect
  • Scribe
  • TortoiseHg
  • 4Images
Monitoring Tool
  • Monit
  • Apache Server Monitoring
  • EtherApe 
  • Arpwatch Tool
  • Auditd
  • Barman
Web Application
  • Nutch
  • Amazon VPC
  • FarmWarDeployer
  • Rukovoditel
  • Mirror site
  • Chef
Contact Us | Terms of Use| Privacy Policy| Disclaimer
© 2025 LinuxHelp.com All rights reserved. Linux™ is the registered trademark of Linus Torvalds. This site is not affiliated with linus torvalds in any way.