<?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>espocrm Archives - Linux Windows and android Tutorials</title>
	<atom:link href="https://www.osradar.com/tag/espocrm/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.osradar.com</link>
	<description>tutorials and news and Seurity</description>
	<lastBuildDate>Wed, 11 Nov 2020 13:22:23 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.8.13</generator>
	<item>
		<title>How to install EspoCRM on Ubuntu 20.04?</title>
		<link>https://www.osradar.com/install-espocrm-ubuntu-20-04/</link>
					<comments>https://www.osradar.com/install-espocrm-ubuntu-20-04/#comments</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Thu, 12 Nov 2020 13:21:00 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[CRM]]></category>
		<category><![CDATA[espocrm]]></category>
		<category><![CDATA[focal]]></category>
		<category><![CDATA[ubuntu]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=25223</guid>

					<description><![CDATA[<p>Sometimes CRMs want to cover so much that they end up being difficult to use. This situation has been understood by several companies and from there, other easier CRMs with more concrete options began to emerge. Today, you will learn how to install EspoCRM on Ubuntu 20.04 which takes this concept to a professional level [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-espocrm-ubuntu-20-04/">How to install EspoCRM on Ubuntu 20.04?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Sometimes CRMs want to cover so much that they end up being difficult to use. This situation has been understood by several companies and from there, other easier CRMs with more concrete options began to emerge. Today, you will learn how to install EspoCRM on Ubuntu 20.04 which takes this concept to a professional level making it a solid option for many SMEs.</p>



<p><a href="https://www.espocrm.com/" target="_blank" rel="noreferrer noopener">EspoCRM</a> is a web application that allows users to see, enter, and evaluate all your company relationships regardless of the type. People, companies, projects, or opportunities &#8211; all in an easy and intuitive interface.</p>



<p>This application is used by many companies in different industries worldwide and has a large number of satisfied customers. It is completely open-source which guarantees us access to the source code and the possibility to adjust it.</p>



<p>So, let&#8217;s install it.</p>



<h2>Install EspoCRM on Ubuntu 20.04</h2>



<p>EspoCRM as usual is a web-based CRM. Therefore it has to be installed on a fully functional webserver. In this case, we have chosen Apache as a web server and MariaDB as a database manager, forming then the LAMP stack.</p>



<p>So, read our post about it</p>



<p><a href="https://www.osradar.com/install-lamp-ubuntu-20-04/" target="_blank" rel="noreferrer noopener">How to install LAMP on Ubuntu 20.04?</a></p>



<p>Also, install these PHP modules needed to run EspoCRM and some important packages.</p>



<pre class="wp-block-preformatted">libapache2-mod-php7.4 openssl php-imagick php7.4-common php7.4-curl php7.4-gd php7.4-imap php7.4-intl php7.4-json php7.4-ldap php7.4-mbstring php7.4-mysql php-ssh2 php7.4-xml php7.4-zip unzip</pre>



<h3>1.- Configuring PHP to work with EspoCRM</h3>



<p>Once Apache and PHP are installed, it is convenient to make some adjustments to the PHP configuration. So, open the configuration file:</p>



<pre class="wp-block-preformatted">sudo nano /etc/php/7.4/apache2/php.ini</pre>



<p>And within the file it sets the following minimum values:</p>



<pre class="wp-block-preformatted">max_execution_time 180<br>max_input_time 180<br>memory_limit 256M<br>post_max_size 20M<br>upload_max_filesize 20M</pre>



<p>When using the nano text editor, you can press the <strong>CTRL + W</strong> keys to perform an accurate search.</p>



<p>Save the changes and close the editor.</p>



<h3>2.- Create a new database and user for MariaDB</h3>



<p>EspoCRM handles a large amount of data thanks to the database managers, so we installed MariaDB. Now it remains, to create a new database and a new user with permissions on it. This in order not to use the root user.</p>



<p>So, open the MariaDB shell:</p>



<pre class="wp-block-preformatted">sudo mysql -u root -p</pre>



<p>And run the following commands:</p>



<pre class="wp-block-preformatted">CREATE DATABASE espocrm;<br>GRANT ALL ON espocrm.* to 'espocrmuser'@'localhost' IDENTIFIED BY 'espocrmpss';<br>FLUSH PRIVILEGES;<br>exit;</pre>



<p>Now we can continue.</p>



<h3>3.- Download EspoCRM</h3>



<p>From a computer other than your server, we will do the download. To do this, visit the EspoCRM website and go to the download section and after entering an email, you can download the file.</p>



<p>Then upload it to your server using the scp command.</p>



<pre class="wp-block-preformatted">scp [file_path] [user]@[server]:/tmp</pre>



<p>In my case,</p>



<pre class="wp-block-preformatted">scp Downloads/EspoCRM-6.0.3.zip angelo@crm.osradar.test:/tmp</pre>



<p>Now go back to the server and decompress the file you just uploaded.</p>



<pre class="wp-block-preformatted">cd /tmp/<br>unzip EspoCRM-6.0.3.zip</pre>



<p>Now move it to the Apache root directory. Also, we will change the name for a simpler one:</p>



<pre class="wp-block-preformatted">sudo mv EspoCRM-6.0.3 /var/www/html/espocrm</pre>



<p>Now, assign the appropriate permissions and make Apache the owner of the folder:</p>



<pre class="wp-block-preformatted">sudo chmod 755 -R /var/www/html/spocrm/<br>sudo chown www-data:www-data -R /var/www/html/espocrm/</pre>



<p>The next step is to create a new VirtualHost for EspoCRM:</p>



<pre class="wp-block-preformatted">sudo nano /etc/apache2/sites-available/espocrm.conf</pre>



<p>And add the following content:</p>



<pre class="wp-block-preformatted">&lt;VirtualHost *:80>
      ServerAdmin admin@your_domain.com
      DocumentRoot /var/www/html/espocrm/
      ServerName crm.osradar.test

     &lt;Directory /var/www/html/espocrm>
            Options FollowSymlinks
            AllowOverride All
            Require all granted
     &lt;/Directory>

     ErrorLog ${APACHE_LOG_DIR}/your-domain.com_error.log
     CustomLog ${APACHE_LOG_DIR}/your-domain.com_access.log combined

&lt;/VirtualHost></pre>



<figure class="wp-block-image size-large"><img loading="lazy" width="879" height="247" src="https://www.osradar.com/wp-content/uploads/2020/11/1-4.png" alt="1.- Creating the new Virtualhost for EspoCRM" class="wp-image-25301" srcset="https://www.osradar.com/wp-content/uploads/2020/11/1-4.png 879w, https://www.osradar.com/wp-content/uploads/2020/11/1-4-300x84.png 300w, https://www.osradar.com/wp-content/uploads/2020/11/1-4-768x216.png 768w, https://www.osradar.com/wp-content/uploads/2020/11/1-4-696x196.png 696w" sizes="(max-width: 879px) 100vw, 879px" /><figcaption>1.- Creating the new Virtualhost for EspoCRM</figcaption></figure>



<p>Replace <code>ServerName</code> with your own and make the desired settings and save the changes.</p>



<p>Make the new Virtualhost and Apache&#8217;s rewrite module available:</p>



<pre class="wp-block-preformatted">sudo ln -s /etc/apache2/sites-available/espocrm.conf /etc/apache2/sites-enabled/espocrm.conf<br>sudo a2enmod rewrite<br>sudo systemctl restart apache2</pre>



<p>Now we can complete the installation.</p>



<h3>4.- Install EspoCRM on Ubuntu 20.04</h3>



<p>Now it is time to complete the installation.</p>



<p>On a client computer open a web browser and go to <code>http://your-server</code> and you will see the following:</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="506" src="https://www.osradar.com/wp-content/uploads/2020/11/2-2-1024x506.png" alt="2.- EspoCRM installer initial screen" class="wp-image-25303" srcset="https://www.osradar.com/wp-content/uploads/2020/11/2-2-1024x506.png 1024w, https://www.osradar.com/wp-content/uploads/2020/11/2-2-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2020/11/2-2-768x379.png 768w, https://www.osradar.com/wp-content/uploads/2020/11/2-2-696x344.png 696w, https://www.osradar.com/wp-content/uploads/2020/11/2-2-1068x528.png 1068w, https://www.osradar.com/wp-content/uploads/2020/11/2-2.png 1354w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>2.- EspoCRM installer initial screen</figcaption></figure>



<p>From this screen, you can choose the language of the installation. So, click on the <em>start</em> button.</p>



<p>Then, accept the license terms.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="502" src="https://www.osradar.com/wp-content/uploads/2020/11/3-2-1024x502.png" alt="3.- License terms" class="wp-image-25304" srcset="https://www.osradar.com/wp-content/uploads/2020/11/3-2-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2020/11/3-2-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2020/11/3-2-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2020/11/3-2-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2020/11/3-2-1068x523.png 1068w, https://www.osradar.com/wp-content/uploads/2020/11/3-2.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>3.- License terms</figcaption></figure>



<p>Now add the database parameters:</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="502" src="https://www.osradar.com/wp-content/uploads/2020/11/4-2-1024x502.png" alt="4.- Database configuration" class="wp-image-25305" srcset="https://www.osradar.com/wp-content/uploads/2020/11/4-2-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2020/11/4-2-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2020/11/4-2-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2020/11/4-2-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2020/11/4-2-1068x523.png 1068w, https://www.osradar.com/wp-content/uploads/2020/11/4-2.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>4.- Database configuration</figcaption></figure>



<p>Now the installer will check your entire system to see if it meets the requirements.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="506" src="https://www.osradar.com/wp-content/uploads/2020/11/5-1-1024x506.png" alt="5.- Server requirements" class="wp-image-25306" srcset="https://www.osradar.com/wp-content/uploads/2020/11/5-1-1024x506.png 1024w, https://www.osradar.com/wp-content/uploads/2020/11/5-1-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2020/11/5-1-768x379.png 768w, https://www.osradar.com/wp-content/uploads/2020/11/5-1-696x344.png 696w, https://www.osradar.com/wp-content/uploads/2020/11/5-1-1068x528.png 1068w, https://www.osradar.com/wp-content/uploads/2020/11/5-1.png 1354w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>5.- Server requirements</figcaption></figure>



<p>After this, you must create the administrator account.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="502" src="https://www.osradar.com/wp-content/uploads/2020/11/6-2-1024x502.png" alt="6.- Creating the new admin account" class="wp-image-25307" srcset="https://www.osradar.com/wp-content/uploads/2020/11/6-2-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2020/11/6-2-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2020/11/6-2-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2020/11/6-2-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2020/11/6-2-1068x523.png 1068w, https://www.osradar.com/wp-content/uploads/2020/11/6-2.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>6.- Creating the new admin account</figcaption></figure>



<p>Then configure the instance. Here you can define the time zone, currency, and time and date format.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="502" src="https://www.osradar.com/wp-content/uploads/2020/11/7-2-1024x502.png" alt="7.- Configuring EspoCRM on Ubuntu 20.04" class="wp-image-25308" srcset="https://www.osradar.com/wp-content/uploads/2020/11/7-2-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2020/11/7-2-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2020/11/7-2-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2020/11/7-2-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2020/11/7-2-1068x523.png 1068w, https://www.osradar.com/wp-content/uploads/2020/11/7-2.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>7.- Configuring EspoCRM on Ubuntu 20.04</figcaption></figure>



<p>Configure EspoCRM with your email server credentials.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="502" src="https://www.osradar.com/wp-content/uploads/2020/11/8-2-1024x502.png" alt="8.- SMTP settings" class="wp-image-25309" srcset="https://www.osradar.com/wp-content/uploads/2020/11/8-2-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2020/11/8-2-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2020/11/8-2-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2020/11/8-2-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2020/11/8-2-1068x523.png 1068w, https://www.osradar.com/wp-content/uploads/2020/11/8-2.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>8.- SMTP settings</figcaption></figure>



<p>If everything goes well, you will see the following message indicating that the installation was successful. Also, you will be prompted for the command to enter to schedule EspoCRM tasks using Crontab.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="502" src="https://www.osradar.com/wp-content/uploads/2020/11/9-2-1024x502.png" alt="9.-EspoCRM installed on Ubuntu 20.04" class="wp-image-25310" srcset="https://www.osradar.com/wp-content/uploads/2020/11/9-2-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2020/11/9-2-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2020/11/9-2-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2020/11/9-2-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2020/11/9-2-1068x523.png 1068w, https://www.osradar.com/wp-content/uploads/2020/11/9-2.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>9.-EspoCRM installed on Ubuntu 20.04</figcaption></figure>



<p>Go to the administration panel and you will see the login screen:</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="502" src="https://www.osradar.com/wp-content/uploads/2020/11/10-2-1024x502.png" alt="10.- Login Screen" class="wp-image-25311" srcset="https://www.osradar.com/wp-content/uploads/2020/11/10-2-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2020/11/10-2-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2020/11/10-2-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2020/11/10-2-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2020/11/10-2-1068x523.png 1068w, https://www.osradar.com/wp-content/uploads/2020/11/10-2.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>10.- Login Screen</figcaption></figure>



<p>And finally, EspoCRM in all its glory.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="506" src="https://www.osradar.com/wp-content/uploads/2020/11/11-1-1024x506.png" alt="11.- EspoCRM on Ubuntu 20.04" class="wp-image-25312" srcset="https://www.osradar.com/wp-content/uploads/2020/11/11-1-1024x506.png 1024w, https://www.osradar.com/wp-content/uploads/2020/11/11-1-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2020/11/11-1-768x379.png 768w, https://www.osradar.com/wp-content/uploads/2020/11/11-1-696x344.png 696w, https://www.osradar.com/wp-content/uploads/2020/11/11-1-1068x528.png 1068w, https://www.osradar.com/wp-content/uploads/2020/11/11-1.png 1354w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>11.- EspoCRM on Ubuntu 20.04</figcaption></figure>



<h2>Conclusion</h2>



<p>EspoCRM is a fairly simple CRM that aims to be a solid alternative for SMEs. This program is not complicated to use and focuses on the basics to be much more useful to the user. After reading this post, now you know how to install it without problems.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-espocrm-ubuntu-20-04/">How to install EspoCRM on Ubuntu 20.04?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.osradar.com/install-espocrm-ubuntu-20-04/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
	</channel>
</rss>
