<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Vtiger Archives - LinuxTuto</title>
	<atom:link href="https://www.linuxtuto.com/tag/vtiger/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.linuxtuto.com/tag/vtiger/</link>
	<description>Linux Sysadmin and DevOps blog</description>
	<lastBuildDate>Thu, 08 Jun 2023 16:55:36 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.1</generator>

<image>
	<url>https://www.linuxtuto.com/wp-content/uploads/2022/01/cropped-LT_faveicon-32x32.png</url>
	<title>Vtiger Archives - LinuxTuto</title>
	<link>https://www.linuxtuto.com/tag/vtiger/</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">201456972</site>	<item>
		<title>How to Install Vtiger CRM on Ubuntu 22.04</title>
		<link>https://www.linuxtuto.com/how-to-install-vtiger-crm-on-ubuntu-22-04/</link>
					<comments>https://www.linuxtuto.com/how-to-install-vtiger-crm-on-ubuntu-22-04/#comments</comments>
		
		<dc:creator><![CDATA[LinuxTuto]]></dc:creator>
		<pubDate>Thu, 27 Apr 2023 14:00:04 +0000</pubDate>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[CRM]]></category>
		<category><![CDATA[MariaDB]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Vtiger]]></category>
		<guid isPermaLink="false">https://www.linuxtuto.com/?p=1282</guid>

					<description><![CDATA[<p>Vtiger CRM is a cloud-based customer relationship management (CRM) software that helps businesses manage their sales, marketing, and customer support activities. It offers a range...</p>
<p>The post <a href="https://www.linuxtuto.com/how-to-install-vtiger-crm-on-ubuntu-22-04/">How to Install Vtiger CRM on Ubuntu 22.04</a> appeared first on <a href="https://www.linuxtuto.com">LinuxTuto</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Vtiger CRM is a cloud-based customer relationship management (CRM) software that helps businesses manage their sales, marketing, and customer support activities. It offers a range of features such as lead management, contact management, sales forecasting, email marketing, and customer support ticketing.</p>
<p>Vtiger CRM is designed to be highly customizable, allowing businesses to tailor the software to their specific needs. It also integrates with a variety of third-party applications, including Google Apps, Office 365, and Zapier, making it easy to sync data between different systems.</p>
<p>In this tutorial, we will show you how to install Vtiger CRM on Ubuntu 22.04.</p>
<h2><span class="has-inline-color has-vivid-purple-color">Step 1: Update Operating System</span></h2>
<p>Update your <strong>Ubuntu</strong> <strong>22.04</strong> operating system to the latest version with the following command:</p>
<pre><code># apt update &amp;&amp; sudo apt upgrade -y</code></pre>
<h2><span class="has-inline-color has-vivid-purple-color">Step 2: Install Apache webserver</span></h2>
<p>You can install it via <code>apt</code> package manager with the following command.</p>
<pre><code># apt install apache2</code></pre>
<p>Verify the status of the Apache service using <strong>systemctl status</strong> command:</p>
<pre><code># systemctl status apache2</code></pre>
<p>Output:</p>
<pre><code><span style="color: #00ff00;">●</span> apache2.service - The Apache HTTP Server
     Loaded: loaded (/lib/systemd/system/apache2.service; enabled; vendor preset: enabled)
     Active: <span style="color: #00ff00;">active (running)</span>
       Docs: https://httpd.apache.org/docs/2.4/
   Main PID: 14406 (apache2)
      Tasks: 55 (limit: 2193)
     Memory: 4.8M
        CPU: 29ms
     CGroup: /system.slice/apache2.service
             ├─14406 /usr/sbin/apache2 -k start
             ├─14408 /usr/sbin/apache2 -k start
             └─14409 /usr/sbin/apache2 -k start</code></pre>
<h2><span class="has-inline-color has-vivid-purple-color">Step 3: Install PHP and PHP extensions</span></h2>
<p>By default, PHP 8.1 is included in the Ubuntu 22.04 default repository. You can install PHP 8.1 using the following command:</p>
<pre><code># apt-get install php libapache2-mod-php php-{cli,common,curl,zip,gd,mysql,xml,mbstring,json,intl,imap}</code></pre>
<p>Verify if PHP is installed.</p>
<pre><code># php -v</code></pre>
<pre><code>Output:
PHP 8.1.2-1ubuntu2.11 (cli) (built: Feb 22 2023 22:56:18) (NTS)
Copyright (c) The PHP Group
Zend Engine v4.1.2, Copyright (c) Zend Technologies
    with Zend OPcache v8.1.2-1ubuntu2.11, Copyright (c), by Zend Technologies
</code></pre>
<h3><span class="has-inline-color has-vivid-purple-color">Update php.ini file</span></h3>
<p>Now it’s time to increase values in the php.ini file.</p>
<p>Open <code>php.ini</code> file:</p>
<pre><code># nano /etc/php/8.1/apache2/php.ini
</code></pre>
<p>Change the following data:</p>
<pre><code>memory_limit = 256M
upload_max_filesize = 128M
display_errors = Off
log_errors = Off
short_open_tag = Off
max_execution_time = 60
date.timezone = America/Chichago
</code></pre>
<p>Then save this <code>php.ini</code> file.</p>
<p>After that, you should restart apache2 for the configuration to take effect:</p>
<pre><code># systemctl restart apache2</code></pre>
<h2><span class="has-inline-color has-vivid-purple-color">Step 4: Install MariaDB and create a database</span></h2>
<p>To install MariaDB run the following command:</p>
<pre><code># apt install mariadb-server mariadb-client</code></pre>
<p>Verify the status of the <code>MariaDB</code> service using <code>systemctl status</code> command:</p>
<pre><code># systemctl status mariadb</code></pre>
<p>Output:</p>
<pre><code><span style="color: #00ff00;">●</span> mariadb.service - MariaDB 10.6.12 database server
     Loaded: loaded (/lib/systemd/system/mariadb.service; enabled; vendor preset: enabled)
     Active: <span style="color: #00ff00;">active (running)</span>
       Docs: man:mariadbd(8)
             https://mariadb.com/kb/en/library/systemd/
    Process: 58518 ExecStartPre=/usr/bin/install -m 755 -o mysql -g root -d /var/run/mysqld (code=exited, status=0/SUCCESS)
    Process: 58519 ExecStartPre=/bin/sh -c systemctl unset-environment _WSREP_START_POSITION (code=exited, status=0/SUCCESS)
    Process: 58521 ExecStartPre=/bin/sh -c [ ! -e /usr/bin/galera_recovery ] &amp;&amp; VAR= ||   VAR=`cd /usr/bin/..; /usr/bin/galera_recovery`; [ $? -eq 0 ]   &amp;&amp; &gt;
    Process: 58560 ExecStartPost=/bin/sh -c systemctl unset-environment _WSREP_START_POSITION (code=exited, status=0/SUCCESS)
    Process: 58562 ExecStartPost=/etc/mysql/debian-start (code=exited, status=0/SUCCESS)
   Main PID: 58550 (mariadbd)
     Status: "Taking your SQL requests now..."
      Tasks: 9 (limit: 3623)
     Memory: 60.8M
        CPU: 1.720s
     CGroup: /system.slice/mariadb.service
             └─58550 /usr/sbin/mariadbd
</code></pre>
<p>Now Setup <code>sql_mode</code>:</p>
<pre><code># nano /etc/mysql/mariadb.conf.d/50-server.cnf</code></pre>
<p>Insert below line under <strong>[mysqld]</strong> section.</p>
<pre><code>sql_mode = ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION</code></pre>
<p>Then restart the MariaDB server.</p>
<pre><code># systemctl restart mariadb</code></pre>
<p>By default, MariaDB is not hardened. You can secure MariaDB using the <code class=" prettyprinted"><span class="pln">mysql_secure_installation</span></code> script.</p>
<pre><code># mysql_secure_installation</code></pre>
<p>Configure it like this:</p>
<pre><code>- Set root password? [Y/n] <strong>Y</strong>
- Remove anonymous users? [Y/n] <strong>Y</strong>
- Disallow root login remotely? [Y/n] <strong>Y</strong>
- Remove test database and access to it? [Y/n] <strong>Y</strong>
- Reload privilege tables now? [Y/n] <strong>Y</strong></code></pre>
<p>Now run the command below to log in to the MariaDB shell.</p>
<pre><code># mysql -u root -p</code></pre>
<p>Once you are logged in to your database server you need to create a database for the Vtiger CRM installation:</p>
<pre><code>MariaDB [(none)]&gt; CREATE DATABASE vtigercrm;
MariaDB [(none)]&gt; CREATE USER 'vtigercrm'@'localhost' IDENTIFIED BY 'Str0ngPassf1';
MariaDB [(none)]&gt; GRANT ALL PRIVILEGES ON vtigercrm. * TO 'vtigercrm'@'localhost';
MariaDB [(none)]&gt; FLUSH PRIVILEGES;
MariaDB [(none)]&gt; exit;</code></pre>
<h2><span class="has-inline-color has-vivid-purple-color">Step 5: Install Vtiger CRM</span></h2>
<p>The latest version of Vtiger CRM is available to <a href="https://sourceforge.net/projects/vtigercrm/">download</a> from their website. You can download it with the following command:</p>
<pre><code># cd /var/www/
# wget https://tenet.dl.sourceforge.net/project/vtigercrm/vtiger%20CRM%207.5.0/Core%20Product/vtigercrm7.5.0.tar.gz</code></pre>
<p>Extract the file with the following command:</p>
<pre><code># tar -xzvf vtigercrm7.5.0.tar.gz</code></pre>
<p>Change the ownership of the directory with the command:</p>
<pre><code># chown -R www-data:www-data /var/www/vtigercrm/</code></pre>
<h2><span class="has-inline-color has-vivid-purple-color">Step 6: Configure Apache for Vtiger CRM</span></h2>
<p>Navigate to <code>/etc/apache2/sites-available</code> directory and run the following command to create a configuration file for your Vtiger CRM installation:</p>
<pre><code># nano /etc/apache2/sites-available/vtigercrm.conf</code></pre>
<p>Add the following content:</p>
<pre><code>&lt;VirtualHost *:80&gt;

ServerName your-domain.com
ServerAlias www.your-domain.com

ServerAdmin webmaster@your-domain.com
DocumentRoot /var/www/vtigercrm

&lt;Directory /var/www/vtigercrm/&gt;
Options +FollowSymlinks
AllowOverride All
Require all granted
&lt;/Directory&gt;

ErrorLog ${APACHE_LOG_DIR}/your-domain.com_error.log
CustomLog ${APACHE_LOG_DIR}/your-domain.com_access.log combined

&lt;/VirtualHost&gt;
</code></pre>
<p>Save the file and Exit.</p>
<p>Enable the <code>Vtiger CRM</code> virtual host:</p>
<pre><code># a2ensite vtigercrm.conf</code></pre>
<p>Enable Apache rewrite mode.</p>
<pre><code># a2enmod rewrite</code></pre>
<p>Restart the Apache web server.</p>
<pre><code># systemctl restart apache2</code></pre>
<h2><span class="has-inline-color has-vivid-purple-color">Step 7: Access your Vtiger CRM Application</span></h2>
<p>Open your web browser and type the URL <strong><code>http://your-domain.com</code></strong>. You should see the following page:</p>
<p><img fetchpriority="high" decoding="async" class="aligncenter wp-image-1286 size-large" src="https://www.linuxtuto.com/wp-content/uploads/2023/04/vtiger_installation_wizard-900x428.jpg" alt="Welcome Page" width="900" height="428" srcset="https://www.linuxtuto.com/wp-content/uploads/2023/04/vtiger_installation_wizard-900x428.jpg 900w, https://www.linuxtuto.com/wp-content/uploads/2023/04/vtiger_installation_wizard-300x143.jpg 300w, https://www.linuxtuto.com/wp-content/uploads/2023/04/vtiger_installation_wizard-768x365.jpg 768w, https://www.linuxtuto.com/wp-content/uploads/2023/04/vtiger_installation_wizard-1536x731.jpg 1536w, https://www.linuxtuto.com/wp-content/uploads/2023/04/vtiger_installation_wizard-1222x581.jpg 1222w, https://www.linuxtuto.com/wp-content/uploads/2023/04/vtiger_installation_wizard-897x427.jpg 897w, https://www.linuxtuto.com/wp-content/uploads/2023/04/vtiger_installation_wizard-684x325.jpg 684w, https://www.linuxtuto.com/wp-content/uploads/2023/04/vtiger_installation_wizard.jpg 1913w" sizes="(max-width: 900px) 100vw, 900px" /></p>
<p>Click <strong>Install</strong> button to go through the setup wizard.</p>
<p><img decoding="async" class="aligncenter wp-image-1293 size-large" src="https://www.linuxtuto.com/wp-content/uploads/2023/04/vtiger_licanse-900x427.jpg" alt="Vtiger Public License" width="900" height="427" srcset="https://www.linuxtuto.com/wp-content/uploads/2023/04/vtiger_licanse-900x427.jpg 900w, https://www.linuxtuto.com/wp-content/uploads/2023/04/vtiger_licanse-300x142.jpg 300w, https://www.linuxtuto.com/wp-content/uploads/2023/04/vtiger_licanse-768x364.jpg 768w, https://www.linuxtuto.com/wp-content/uploads/2023/04/vtiger_licanse-1536x729.jpg 1536w, https://www.linuxtuto.com/wp-content/uploads/2023/04/vtiger_licanse-1222x580.jpg 1222w, https://www.linuxtuto.com/wp-content/uploads/2023/04/vtiger_licanse-897x426.jpg 897w, https://www.linuxtuto.com/wp-content/uploads/2023/04/vtiger_licanse-684x325.jpg 684w, https://www.linuxtuto.com/wp-content/uploads/2023/04/vtiger_licanse.jpg 1916w" sizes="(max-width: 900px) 100vw, 900px" /></p>
<p>Accept the License Agreement by click &#8220;<strong>I Agree&#8221;. </strong>You should see the following page:</p>
<p><img decoding="async" class="aligncenter wp-image-1294 size-large" src="https://www.linuxtuto.com/wp-content/uploads/2023/04/vtiger_prerequisites-900x428.jpg" alt="Installation prerequisites" width="900" height="428" srcset="https://www.linuxtuto.com/wp-content/uploads/2023/04/vtiger_prerequisites-900x428.jpg 900w, https://www.linuxtuto.com/wp-content/uploads/2023/04/vtiger_prerequisites-300x143.jpg 300w, https://www.linuxtuto.com/wp-content/uploads/2023/04/vtiger_prerequisites-768x365.jpg 768w, https://www.linuxtuto.com/wp-content/uploads/2023/04/vtiger_prerequisites-1536x731.jpg 1536w, https://www.linuxtuto.com/wp-content/uploads/2023/04/vtiger_prerequisites-1222x581.jpg 1222w, https://www.linuxtuto.com/wp-content/uploads/2023/04/vtiger_prerequisites-897x427.jpg 897w, https://www.linuxtuto.com/wp-content/uploads/2023/04/vtiger_prerequisites-684x325.jpg 684w, https://www.linuxtuto.com/wp-content/uploads/2023/04/vtiger_prerequisites.jpg 1915w" sizes="(max-width: 900px) 100vw, 900px" /></p>
<p>Verify installation prerequisites ensure that all pre-reqs are met. Otherwise fix them and then click on the <strong>Next</strong> button.</p>
<p><img loading="lazy" decoding="async" class="aligncenter wp-image-1295 size-large" src="https://www.linuxtuto.com/wp-content/uploads/2023/04/vtiger_system_configuration-900x428.jpg" alt="System Configuration" width="900" height="428" srcset="https://www.linuxtuto.com/wp-content/uploads/2023/04/vtiger_system_configuration-900x428.jpg 900w, https://www.linuxtuto.com/wp-content/uploads/2023/04/vtiger_system_configuration-300x143.jpg 300w, https://www.linuxtuto.com/wp-content/uploads/2023/04/vtiger_system_configuration-768x365.jpg 768w, https://www.linuxtuto.com/wp-content/uploads/2023/04/vtiger_system_configuration-1536x730.jpg 1536w, https://www.linuxtuto.com/wp-content/uploads/2023/04/vtiger_system_configuration-1222x581.jpg 1222w, https://www.linuxtuto.com/wp-content/uploads/2023/04/vtiger_system_configuration-897x427.jpg 897w, https://www.linuxtuto.com/wp-content/uploads/2023/04/vtiger_system_configuration-684x325.jpg 684w, https://www.linuxtuto.com/wp-content/uploads/2023/04/vtiger_system_configuration.jpg 1918w" sizes="auto, (max-width: 900px) 100vw, 900px" /></p>
<p>Provide your database name, database username, password, admin username and password.</p>
<p>Then, click on the <strong>Next</strong> button. You should see the following page:</p>
<p><img loading="lazy" decoding="async" class="aligncenter wp-image-1296 size-large" src="https://www.linuxtuto.com/wp-content/uploads/2023/04/vtiger_configuration_settings-900x428.jpg" alt="Confirm Configuration Settings" width="900" height="428" srcset="https://www.linuxtuto.com/wp-content/uploads/2023/04/vtiger_configuration_settings-900x428.jpg 900w, https://www.linuxtuto.com/wp-content/uploads/2023/04/vtiger_configuration_settings-300x143.jpg 300w, https://www.linuxtuto.com/wp-content/uploads/2023/04/vtiger_configuration_settings-768x365.jpg 768w, https://www.linuxtuto.com/wp-content/uploads/2023/04/vtiger_configuration_settings-1536x731.jpg 1536w, https://www.linuxtuto.com/wp-content/uploads/2023/04/vtiger_configuration_settings-1222x581.jpg 1222w, https://www.linuxtuto.com/wp-content/uploads/2023/04/vtiger_configuration_settings-897x427.jpg 897w, https://www.linuxtuto.com/wp-content/uploads/2023/04/vtiger_configuration_settings-684x325.jpg 684w, https://www.linuxtuto.com/wp-content/uploads/2023/04/vtiger_configuration_settings.jpg 1913w" sizes="auto, (max-width: 900px) 100vw, 900px" /></p>
<p>Review the system configuration settings and click <strong>Next </strong>button.</p>
<p>On the <strong>Next</strong> page, select your Industry and click Next to proceed with installation.</p>
<p><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-1289" src="https://www.linuxtuto.com/wp-content/uploads/2023/04/vtiger_industry_configuration-900x428.jpg" alt="Vtiger Industry Configuration" width="900" height="428" srcset="https://www.linuxtuto.com/wp-content/uploads/2023/04/vtiger_industry_configuration-900x428.jpg 900w, https://www.linuxtuto.com/wp-content/uploads/2023/04/vtiger_industry_configuration-300x143.jpg 300w, https://www.linuxtuto.com/wp-content/uploads/2023/04/vtiger_industry_configuration-768x365.jpg 768w, https://www.linuxtuto.com/wp-content/uploads/2023/04/vtiger_industry_configuration-1536x731.jpg 1536w, https://www.linuxtuto.com/wp-content/uploads/2023/04/vtiger_industry_configuration-1222x581.jpg 1222w, https://www.linuxtuto.com/wp-content/uploads/2023/04/vtiger_industry_configuration-897x427.jpg 897w, https://www.linuxtuto.com/wp-content/uploads/2023/04/vtiger_industry_configuration-684x325.jpg 684w, https://www.linuxtuto.com/wp-content/uploads/2023/04/vtiger_industry_configuration.jpg 1913w" sizes="auto, (max-width: 900px) 100vw, 900px" /></p>
<p>Once the installation is done, Select the modules for the Vtiger CRM features you would like to have.</p>
<p><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-1290" src="https://www.linuxtuto.com/wp-content/uploads/2023/04/vtiger_modules-900x662.jpg" alt="Vtiger Modules" width="900" height="662" srcset="https://www.linuxtuto.com/wp-content/uploads/2023/04/vtiger_modules-900x662.jpg 900w, https://www.linuxtuto.com/wp-content/uploads/2023/04/vtiger_modules-300x221.jpg 300w, https://www.linuxtuto.com/wp-content/uploads/2023/04/vtiger_modules-768x565.jpg 768w, https://www.linuxtuto.com/wp-content/uploads/2023/04/vtiger_modules-1222x899.jpg 1222w, https://www.linuxtuto.com/wp-content/uploads/2023/04/vtiger_modules-897x660.jpg 897w, https://www.linuxtuto.com/wp-content/uploads/2023/04/vtiger_modules-684x503.jpg 684w, https://www.linuxtuto.com/wp-content/uploads/2023/04/vtiger_modules.jpg 1312w" sizes="auto, (max-width: 900px) 100vw, 900px" /></p>
<p>Click <strong>Next</strong> and you should see the <code>Vitager CRM</code> dashboard:</p>
<p><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-1291" src="https://www.linuxtuto.com/wp-content/uploads/2023/04/vtiger_dashboard-900x428.jpg" alt="Vtiger Dashboard" width="900" height="428" srcset="https://www.linuxtuto.com/wp-content/uploads/2023/04/vtiger_dashboard-900x428.jpg 900w, https://www.linuxtuto.com/wp-content/uploads/2023/04/vtiger_dashboard-300x143.jpg 300w, https://www.linuxtuto.com/wp-content/uploads/2023/04/vtiger_dashboard-768x365.jpg 768w, https://www.linuxtuto.com/wp-content/uploads/2023/04/vtiger_dashboard-1536x730.jpg 1536w, https://www.linuxtuto.com/wp-content/uploads/2023/04/vtiger_dashboard-1222x581.jpg 1222w, https://www.linuxtuto.com/wp-content/uploads/2023/04/vtiger_dashboard-897x426.jpg 897w, https://www.linuxtuto.com/wp-content/uploads/2023/04/vtiger_dashboard-684x325.jpg 684w, https://www.linuxtuto.com/wp-content/uploads/2023/04/vtiger_dashboard.jpg 1915w" sizes="auto, (max-width: 900px) 100vw, 900px" /></p>
<p>You can now add more widgets to your dashboard.</p>
<h2><span class="has-inline-color has-vivid-purple-color">Comments and Conclusion</span></h2>
<p>That’s it. You have successfully installed Vtiger CRM on Ubuntu 22.04.</p>
<p>For additional help or useful information, we recommend you to check <a href="http://community.vtiger.com/help/">the official Vtiger CRM documentation</a>.</p>
<p>If you have any questions please leave a comment below.</p>
<p>The post <a href="https://www.linuxtuto.com/how-to-install-vtiger-crm-on-ubuntu-22-04/">How to Install Vtiger CRM on Ubuntu 22.04</a> appeared first on <a href="https://www.linuxtuto.com">LinuxTuto</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.linuxtuto.com/how-to-install-vtiger-crm-on-ubuntu-22-04/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1282</post-id>	</item>
	</channel>
</rss>
