Setup and run your own call center pbx with crm Part-1
Customer relationship management (CRM) is a powerful tool, if used is correctly, understanding the features and how it functions is just the beginning of what you can achieve with right integrations.
With your communication channels integrated, CRM essentially gives the Leeds and customers exactly what they want rather than what we the company think that they want so if you add your communication channels and automate, it will be really helpful and streamline all communications resulting in increased ROI and better customer service. Doesn’t matter what team size or what business size, there is something for all in CRM. Communication channels integration such as email, SMS, WhatsApp, Social Messaging and Voice Calls.
Today in this article I will walk you through the process where you can have open source CRM (Vtiger) implementation with an open source PBX system Asterisk this implementation will only cost you just a small virtual machine or a containerised doctor of Ubuntu 18.
Install and Setup Vtiger CRM on Ubuntu 20.04
Prerequisites
System Requirements
Ensure that you have at least 2 CPU cores, at least 4GB RAM and enough disk space. (Vtiger recommends 250G for attachments)
Install and Setup LAMP Stack
Vtiger is a PHP based web application. As such, ensure that you install and setup LAMP stack before you can proceed. We have covered the installation and setup of LAMP stack on Ubuntu 20.04 in our previous guide. You can follow the link below to setup LAMP stack.
Install LAMP Stack on Ubuntu 20.04
Install other required PHP modules;
apt install php php-imap php-curl php-xml php-mysql php-mbstring
Configure PHP for Vtiger
Open the /etc/php/7.4/apache2/php.ini
configuration file and make the following adjustments;
vim /etc/php/7.4/apache2/php.inimemory_limit = 256Mmax_execution_time = 60log_errors = Offdisplay_errors = Offshort_open_tag = Off
Save and exit the file.
Create Database and Database User for Vtiger
Next, once the LAMP stack is in place, login to MySQL as administrative user.
mysql -u root -p
Note that we are using MySQL 8 in this tutorial.
mysql -Vmysql Ver 8.0.20-0ubuntu0.20.04.1 for Linux on x86_64 ((Ubuntu))
Create Vtiger database and database user. Be sure to replace the usernames.
create database vtiger default character set utf8 default collate utf8_general_ci;create user vtigeradm@localhost identified by 'myStr0nGp@ss';
Grant all privileges to Vtiger database use on the Vtiger database.
grant all on vtiger.* to vtigeradm@localhost;
Reload the privileges table and exit the database;
flush privileges;exit;
Next, implement the following global configuration for MySQL;
echo -e '[mysqld]\nsql_mode = ""' >> /etc/mysql/my.cnf
Restart MySQL;
systemctl restart mysql
Download Vtiger Application Tarball
Navigate to Vtiger downloads page and the latest tarball for the opensource version of Vtiger.
wget https://sourceforge.net/projects/vtigercrm/files/vtiger%20CRM%207.2.0/Core%20Product/vtigercrm7.2.0.tar.gz
Extract and Install Vtiger CRM on Ubuntu 20.04
Once the download is complete, extract the tarball to your preferred web root directory. Note the Vtiger is a ready to deploy application.
In this demo, we will use /var/www/vtigercrm
as our default Vtiger CRM web root directory.
mkdir /var/www/vtigercrmtar xzf vtigercrm7.2.0.tar.gz --strip-components=1 -C /var/www/vtigercrm/
Create Apache Web Configuration for Vtiger CRM
Since we are using Apache as our web server for the Vtiger CRM, you need to create the web configuration file to define how to access Vtiger from web as follows;
vim /etc/apache2/sites-available/vtigercrm.conf
Paster the following configurations making changes as per your setup.
<VirtualHost *:80>ServerName vtigercrm.kifarunix-demo.comDocumentRoot /var/www/vtigercrm/<Directory /var/www/vtigercrm/>Options FollowSymlinksAllowOverride AllRequire all granted</Directory>ErrorLog /var/log/apache2/vtigercrm_error.logCustomLog /var/log/apache2/vtigercrm_access.log combined</VirtualHost>
If you want, you can configure Vtiger CRM with SSL/TLS cerfiticates.
Set the ownership of the Vtiger CRM web root directory to Apache user;
chown -R www-data:www-data /var/www/vtigercrm/
Save and exit the configuration file above.
Disable default Apache site;
a2dissite 000-default.conf
Enable Vtiger CRM Apache site;
a2ensite vtigercrm.conf
Enable Apache Rewrite Module;
a2enmod rewrite
Check Apache configuration syntax;
apachectl -t
If you get Syntax OK
, proceed to restart Apache.
systemctl restart apache2
Finalize Vtiger CRM Setup from Browser
Open Apache on UFW to allow external access;
ufw allow 80/tcp
You can then access it via the address, http://server-IP-or-hostname.
On the welcome page, click Install
button to go through the setup wizard.
On the next page, accept the EULA and proceed.
On the Installation prerequisites, ensure that all pre-reqs are met. Otherwise fix them before you proceed.
On system configuration page, configure database connection details as defined above and setup your Vtiger CRM administrative account.
Click Next to review the system configuration settings.
On the Next page, select your Industry and click Next to proceed with installation.
Wait for the installation to complete. This might take some time.
Once the installation is done, Select the modules for the Vtiger features you would like to have.
Click Next and login to you Vtiger. Use the administrative credentials you set above.
You can now add more widgets to your dashboard.
Great. That is all on how to install and setup Vtiger CRM on Ubuntu 20.04. You can configure it further to your liking. Enjoy.
Further Reading
Gopal Jani
https://www.linkedin.com/in/gopal-jani/
No comments yet. Login to start a new discussion Start a new discussion