How to install vTiger CRM with Apache on Ubuntu Linux

|

,

|

This article details the process of installing and using vTiger CRM on Ubuntu Linux with Apache support. Steps include installing Apache2 and MariaDB, a database server, upgrading to PHP 7.1, and setting up and configuring a vTiger database. The guide also includes instructions to download the latest vTiger release and configure Apache2 for use with…

This article describes the steps to install and use vTiger CRM on Ubuntu Linux with Apache support.

There are several reasons why installing vTiger CRM with Apache on Ubuntu Linux could be beneficial. First, vTiger CRM is a powerful open-source software that helps businesses collaborate with customers and automate engaging customer experiences.

Second, Apache is the most popular web server in use today, and it is required for vTiger CRM to function properly. Finally, Ubuntu Linux is a stable and reliable operating system well-suited for running enterprise-level applications like vTiger CRM.

By installing vTiger CRM with Apache on Ubuntu Linux, businesses can use a powerful CRM platform supported by a reliable and secure web server and operating system.

How to install vTiger on Ubuntu Linux with Apache support

As described above, the vTiger CRM system is based on PHP. It is designed to allow enterprises and business owners to collaborate and automate engaging customer experiences throughout the process.

Below is how to install it on Ubuntu Linux with Apache support.

Install Apache2

vTiger CRM requires a web server, and the most popular web server in use today is Apache2. So, go and install Apache on Ubuntu by running the commands below:

sudo apt update
sudo apt install apache2

Next, run the commands below to stop, start, and enable the Apache2 service to always start up with the server boots.

sudo systemctl stop apache2.service
sudo systemctl start apache2.service
sudo systemctl enable apache2.service

Install MariaDB

vTiger also requires a database server, and MariaDB is a great place to start when looking for an open-source database server.

To install it, run the commands below.

sudo apt-get install mariadb-server mariadb-client

After installation, the commands below can stop, start, and enable the MariaDB service to start up when the server boots.

sudo systemctl stop mysql.service
sudo systemctl start mysql.service
sudo systemctl enable mysql.service

After that, run the commands below to secure the MariaDB server.

sudo mysql_secure_installation

When prompted, answer the questions below by following the guide.

  • Enter current password for root (enter for none): Just press the Enter
  • Set root password? [Y/n]: Y
  • New password: Enter the password
  • Re-enter new password: Repeat password
  • Remove anonymous users? [Y/n]: Y
  • Disallow root login remotely? [Y/n]: Y
  • Remove test database and access to it? [Y/n]:  Y
  • Reload privilege tables now? [Y/n]:  Y

Install PHP and Related Modules

PHP 7.1 isn’t available on Ubuntu’s default repositories. So, to install it, you must get it from third-party repositories.

Run the commands below to add the below third party repository to upgrade to PHP 7.1

sudo apt-get install software-properties-common
sudo add-apt-repository ppa:ondrej/php

Then update and upgrade to PHP 7.1

sudo apt update

Run the commands below to install PHP 7.1 and related modules.

sudo apt install php7.1 libapache2-mod-php7.1 php7.1-common php7.1-mbstring php7.1-xmlrpc php7.1-soap php7.1-gd php7.1-xml php7.1-intl php7.1-mysql php7.1-cli php7.1-mcrypt php7.1-ldap php7.1-zip php7.1-curl

After installing PHP, run the commands below to open the Apache2 PHP default file.

sudo nano /etc/php/7.1/apache2/php.ini

Then change to the following lines below in the file and save.

file_uploads = On
allow_url_fopen = On
memory_limit = 256M
upload_max_filesize = 64M
max_execution_time = 30
display_errors = Off
max_input_vars = 1500
date.timezone = America/Chicago

Create vTiger Database

Now that you’ve installed all the required packages continue below to start configuring the servers.

First, run the commands below to create a vTiger database.

Run the commands below to log on to the database server. When prompted for a password, type the root password you created above.

sudo mysql -u root -p

Then, create a database called vtigercrmdb

CREATE DATABASE vtigercrmdb;

Create a database user called vtigercrmuser with a new password

CREATE USER 'vtigercrmuser'@'localhost' IDENTIFIED BY 'new_password_here';

Then, grant the user full access to the database.

GRANT ALL ON vtigercrmdb.* TO 'vtigercrmuser'@'localhost' IDENTIFIED BY 'user_password_here' WITH GRANT OPTION;

Finally, save your changes and exit.

FLUSH PRIVILEGES;
EXIT;

Download vTiger Latest Release

Next, visit the Vtiger site and download the latest version.

After downloading, run the commands below to extract the download file into the Apache2 root directory.

cd /tmp && wget https://sourceforge.net/projects/vtigercrm/files/vtiger%20CRM%207.0.1/Core%20Product/vtigercrm7.0.1.tar.gz
tar xzf vtigercrm7.0.1.tar.gz
sudo mv vtigercrm /var/www/html/vtigercrm

Then, run the commands below to set the correct permissions for Concrete5 to function.

sudo chown -R www-data:www-data /var/www/html/vtigercrm/
sudo chmod -R 755 /var/www/html/vtigercrm/

Configure Apache2

Finally, configure the Apahce2 virtual host configuration file for vTiger. This file will control how users access vTiger content.

Run the commands below to create a new configuration file called vtigercrm.conf.

sudo nano /etc/apache2/sites-available/vtigercrm.conf

Then copy and paste the content below into the file and save it. Replace the highlighted line with your domain name and directory root location.

<VirtualHost *:80>
     ServerAdmin admin@example.com
     DocumentRoot /var/www/html/vtigercrm/
     ServerName example.com
     ServerAlias www.example.com

     <Directory /var/www/html/vtigercrm/>
        Options +FollowSymlinks
        AllowOverride All
        Require all granted
     </Directory>

     ErrorLog ${APACHE_LOG_DIR}/error.log
     CustomLog ${APACHE_LOG_DIR}/access.log combined

</VirtualHost>

Save the file and exit.

Enable the vTiger server block

After configuring the VirtualHost above, please enable it by running the commands below.

sudo a2ensite vtigercrm.conf
sudo a2enmod rewrite

Restart Apache2 by running the commands below to load all the settings above.

sudo systemctl restart apache2.service

Next, open your browser and browse to the server domain name, followed by install. Finally, you should see the vTiger setup wizard complete.

Please follow the wizard carefully.

http://example.com

Then, follow the on-screen instructions until you’ve successfully installed vTiger.

Type the database info and create an admin account for the portal.

After a brief time, the installation should be complete, and the platform should be ready to be used.

Enjoy!

Like this:



13 responses to “How to install vTiger CRM with Apache on Ubuntu Linux”

  1. Sebastian Avatar
    Sebastian

    downloadlink is dead!

    1. Manoj Rajayah Avatar
      Manoj Rajayah

      wget https://excellmedia.dl.sourceforge.net/project/vtigercrm/vtiger%20CRM%207.1.0/Core%20Product/vtigercrm7.1.0.tar.gz
      tar -xvzf vtigercrm7.1.0.tar.gz
      sudo mv vtigercrm /var/www/html/vtigercrm

  2. Daniel Orkan Avatar
    Daniel Orkan

    Thank you for the helpful guide !
    One comment – I had to alter the (MySQL) database with:
    ALTER DATABASE vtiger CHARACTER SET utf8 COLLATE utf8_general_ci;

  3. Gerald Avatar
    Gerald

    The download like is not dead. It is just refusing connections using wget. As a workaround, I downloaded the file and uploaded it to vtiger server. This allowed me to use the latest version (as of this post) 7.1.0.

  4. Daniel Avatar
    Daniel

    Hi There, Thank you for the instructions here. you literally saved me :).
    is there a way you can set up the instructions on installing lets encrypt free SSL on this?
    This would help me and many other. We really appreciate it.

  5. Paul Semez Avatar
    Paul Semez

    Hello,
    When finish installation, I have a white page 🙁
    No error any log.
    I’m on ubuntu 18.04, I try with PHP 7.1 and PHP 5.6, same problème 🙁

  6. Daniel Orkan Avatar
    Daniel Orkan

    Hello,

    I managed to install (…) vtiger 7.1 with these prerequisites:

    Ubuntu ubuntu-16.04.4-server-i386 (32 bit)
    Vtiger version 7.1.0
    Apache2 version 2.4.18
    MariaDB version mysql Ver 15.1 Distrib 10.0.36-MariaDB
    php version 5.6

    After getting this “result is not an object” I had to
    1) Drop the vtiger database
    2) Delete config.ini.php
    3) Change the database like this:
    ALTER DATABASE vtiger CHARACTER SET utf8 COLLATE utf8_general_ci;

    And installation worked.

    Daniel Orkan
    info@mobile-up.co.il

  7. Brad Avatar
    Brad

    I’m so confused: installing in the default html folder doesn’t take advantage of virtual hosting, does it? I thought virtual sites should be installed in /var/www/ not /var/www/html/.

    What if I want a separate development installation for testing? Can vTiger be installed in /var/www/testsite.com/ instead of the default /var/www/html folder?

  8. NetEbi Avatar
    NetEbi

    Hello,
    for the blanc page you could try the way described here :
    https://discussions.vtiger.com/discussion/comment/1219079?
    I have installed VTiger on a RaspBerry 3 with all the newest RASPBIAN packets (STRETCH).
    Nevertheless a VERY good installation manual, with a little fine tuning for the database :
    In my case the database was not really populated following the instructions above (?), I had to create a MySQL User with all rights (used WebMin for it), and let the vtiger wizzard create the database with the user and credentials of this newly created user. Worked fine, vtiger is up and running.

  9. Luis Morales Avatar
    Luis Morales

    Good evening does not allow me to connect to the database, install my machine in aws could you advise me.
    ERROR
    Unable to connect to database Server. Invalid mySQL Connection Parameters specified This may be due to the following reasons:
    – specified database user, password, hostname, database type, or port is invalid – specified database user does not have access to connect to the database server from the host

  10. Francesco Avatar
    Francesco

    New for now is use Docker. Take a look to https://github.com/javanile/vtiger

  11. JU Avatar
    JU

    I am not getting past the point

    MySQL Server should be configured with:
    sql_mode = ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION

    Although these settings are already done and visible in Adminer .

    Anyone have a clue how to bring on installation?

  12. vivek kumar Avatar
    vivek kumar

    i am getting error while installing vtiger
    my system is ubuntu 16.04 64 bit
    plzzzz help me out
    Warning: Declaration of Users::saveentity($module) should be compatible with CRMEntity::saveentity($module, $fileid = ”) in /var/www/html/vtigercrm/modules/Users/Users.php on line 1954

    Warning: Declaration of Users::uploadAndSaveFile($id, $module, $file_details) should be compatible with CRMEntity::uploadAndSaveFile($id, $module, $file_details, $attachmentType = ‘Attachment’) in /var/www/html/vtigercrm/modules/Users/Users.php on line 1954

    Warning: Declaration of Users::insertIntoEntityTable($table_name, $module) should be compatible with CRMEntity::insertIntoEntityTable($table_name, $module, $fileid = ”) in /var/www/html/vtigercrm/modules/Users/Users.php on line 1954

    Warning: Declaration of Users::save($module_name) should be compatible with CRMEntity::save($module_name, $fileid = ”) in /var/www/html/vtigercrm/modules/Users/Users.php on line 1954

    Warning: Declaration of Users::get_column_value($columname, $fldvalue, $fieldname, $uitype, $datatype) should be compatible with CRMEntity::get_column_value($columnname, $fldvalue, $fieldname, $uitype, $datatype = ”) in /var/www/html/vtigercrm/modules/Users/Users.php on line 1954

    Warning: session_start(): Cannot send session cache limiter – headers already sent (output started at /var/www/html/vtigercrm/modules/Users/Users.php:1954) in /var/www/html/vtigercrm/libraries/HTTP_Session2/HTTP/Session2.php on line 211

    Warning: Cannot modify header information – headers already sent by (output started at /var/www/html/vtigercrm/modules/Users/Users.php:1954) in /var/www/html/vtigercrm/includes/main/WebUI.php on line 148

Leave a Reply to Daniel Orkan Cancel reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.