<?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>CRM Archives - Linux Windows and android Tutorials</title>
	<atom:link href="https://www.osradar.com/tag/crm/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>
		<item>
		<title>How to install Yetiforce on CentOS 7?</title>
		<link>https://www.osradar.com/how-to-install-yetiforce-on-centos-7/</link>
					<comments>https://www.osradar.com/how-to-install-yetiforce-on-centos-7/#comments</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Tue, 18 Jun 2019 23:11:44 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[CRM]]></category>
		<category><![CDATA[enterprise]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[yetiforce]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=12415</guid>

					<description><![CDATA[<p>In Linux, every day is more common to see many new applications for various areas. Many are oriented from leisure to business. From small to very large companies, the tools that help with the workflow within them are welcome. Likewise, if they are open source then they are even more so. Then, in this post, [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-yetiforce-on-centos-7/">How to install Yetiforce on CentOS 7?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p class="">In Linux, every day is more common to see many new applications for various areas. Many are oriented from leisure to business. From small to very large companies, the tools that help with the workflow within them are welcome. Likewise, if they are open source then they are even more so. Then, in this post, I will teach you how to install a CRM for your company, a very powerful one. In short, in this post, you will learn how to install Yetiforce on CentOS 7.</p>
<h2>Looking for a CRM? Yetiforce is probably the best</h2>
<p>A CRM (Customer Relationship Management) is a type of application-oriented to everything concerning the relationship between customers and company. Similarly, thanks to CRM can collect customer data to predict some of their needs and get their loyalty. In this sense, a CRM also ensures a great marketing policy.</p>
<p>In conclusion, we can say that companies that use CRM solutions generate more sales opportunities, streamlining management, with budgets updated in real time and optimized sales processes.</p>
<p>On the other hand, <a href="https://yetiforce.com">Yetiforce</a> is a CRM of Polish origin. It has all the features expected by software of its kind, however, is more powerful than most. In the website of the project states that is &#8220;the best CRM that exists&#8221;, and is that thanks to more than 100 modules available make it one of the most solid.</p>
<p>In the same way, it is open source and allows us to examine its source code to know how it is done. Besides, it is easy to audit.</p>
<p>Let us install Yetiforce on CentOS 7.</p>
<h2>Install Yetiforce on CentOS 7</h2>
<h3>1. Install Apache and PHP 7.2</h3>
<p>First, we must install the Apache web server to run Yetiforce.</p>
<p>In a terminal interface, run the following:</p>
<pre>:~$ su
:~# yum install httpd</pre>
<p><figure id="attachment_12432" aria-describedby="caption-attachment-12432" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12432" src="https://www.osradar.com/wp-content/uploads/2019/06/1-9.png" alt="1.- Install Apache" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2019/06/1-9.png 1366w, https://www.osradar.com/wp-content/uploads/2019/06/1-9-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2019/06/1-9-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2019/06/1-9-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2019/06/1-9-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2019/06/1-9-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2019/06/1-9-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-12432" class="wp-caption-text">1.- Install Apache</figcaption></figure></p>
<p>Then open port 80 in the CentOS firewall.</p>
<pre>:~# firewall-cmd --add-port=80/tcp --permanent
success
:~# firewall-cmd --reload
success</pre>
<p>Now, you have to install <a href="https://www.osradar.com/how-to-install-php-7-2-on-debian-9-stretch/">PHP 7.2</a>. Since PHP 7.2 is not available in CentOS, it is necessary to use another repository.</p>
<pre>:~# yum install epel-release yum-utils
:~# rpm -Uhv https://rpms.remirepo.net/enterprise/remi-release-7.rpm
:~# yum-config-manager --enable remi-php72</pre>
<p>Once you have done this, you can install PHP 7.2 and the required modules for Yetiforce.</p>
<pre>:~# yum install php php-mysqlnd php-opcache php-xml php-xmlrpc php-gd php-mbstring php-imap php-json php-xdebug php-posix php-uopz php-bcmath php-zip php-apcu php-ldap php-soap php-opcache php-intl php-imagick</pre>
<p><figure id="attachment_12433" aria-describedby="caption-attachment-12433" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12433" src="https://www.osradar.com/wp-content/uploads/2019/06/2-7.png" alt="2.- Install PHP 7.2 on CentOS" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2019/06/2-7.png 1366w, https://www.osradar.com/wp-content/uploads/2019/06/2-7-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2019/06/2-7-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2019/06/2-7-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2019/06/2-7-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2019/06/2-7-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2019/06/2-7-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-12433" class="wp-caption-text">2.- Install PHP 7.2 on CentOS</figcaption></figure></p>
<p>In order to test PHP, create a new file on /var/www/html/ and add the following:</p>
<pre>:~# yum install nano
:~# nano /var/www/html/test.php
&lt;?php
phpinfo();
?&gt;</pre>
<p><figure id="attachment_12434" aria-describedby="caption-attachment-12434" style="width: 856px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12434" src="https://www.osradar.com/wp-content/uploads/2019/06/3-6.png" alt="3.- PHP info file" width="856" height="151" srcset="https://www.osradar.com/wp-content/uploads/2019/06/3-6.png 856w, https://www.osradar.com/wp-content/uploads/2019/06/3-6-300x53.png 300w, https://www.osradar.com/wp-content/uploads/2019/06/3-6-768x135.png 768w, https://www.osradar.com/wp-content/uploads/2019/06/3-6-696x123.png 696w" sizes="(max-width: 856px) 100vw, 856px" /><figcaption id="caption-attachment-12434" class="wp-caption-text">3.- PHP info file</figcaption></figure></p>
<p>Start the Apache service.</p>
<pre>:~# systemctl enable httpd
:~# systemctl start httpd</pre>
<p>Now, open a web browser and go to <code>http://your-server/test.php</code> and you will see this.</p>
<p><figure id="attachment_12435" aria-describedby="caption-attachment-12435" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12435" src="https://www.osradar.com/wp-content/uploads/2019/06/4-4.png" alt="4.- PHP and Apache are correctly installed" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2019/06/4-4.png 1366w, https://www.osradar.com/wp-content/uploads/2019/06/4-4-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/06/4-4-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/06/4-4-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/06/4-4-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/06/4-4-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/06/4-4-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2019/06/4-4-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-12435" class="wp-caption-text">4.- PHP and Apache are correctly installed</figcaption></figure></p>
<h3>2.- Install MySQL 8 on CentOS 7</h3>
<p>Now you have to install MySQL. The problem is that the version you bring in the official repositories is very old, better use version 8.</p>
<pre>:~# rpm -Uvh https://repo.mysql.com/mysql57-community-release-el7-11.noarch.rpm
:~# yum --enablerepo=mysql80-community install mysql-community-server</pre>
<p><figure id="attachment_12436" aria-describedby="caption-attachment-12436" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12436" src="https://www.osradar.com/wp-content/uploads/2019/06/5-2.png" alt="5.- Install MySQL 8 on CentOS 7" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2019/06/5-2.png 1366w, https://www.osradar.com/wp-content/uploads/2019/06/5-2-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2019/06/5-2-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2019/06/5-2-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2019/06/5-2-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2019/06/5-2-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2019/06/5-2-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-12436" class="wp-caption-text">5.- Install MySQL 8 on CentOS 7</figcaption></figure></p>
<p>Then you have to start the service.</p>
<pre>:~# systemctl enable mysqld
:~# systemctl start mysqld</pre>
<p>After that, you need to find out the temporary password.</p>
<pre>:~# grep "A temporary password" /var/log/mysqld.log
A temporary password is generated for root@localhost: 9iyw6&gt;sX:jf5</pre>
<p>Now, you have to use the <code>mysql_secure_installation</code> script to secure MySQL.</p>
<pre>:~# mysql_secure_installation</pre>
<p>You will be asked several questions to improve the security of the program:</p>
<pre>Remove anonymous users? Y
Disallow root login remotely? Y
Remove test database and access to it? Y
Reload privilege tables now? Y</pre>
<p><figure id="attachment_12437" aria-describedby="caption-attachment-12437" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12437" src="https://www.osradar.com/wp-content/uploads/2019/06/6-2.png" alt="6.- secure the MySQL installation" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2019/06/6-2.png 1366w, https://www.osradar.com/wp-content/uploads/2019/06/6-2-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2019/06/6-2-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2019/06/6-2-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2019/06/6-2-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2019/06/6-2-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2019/06/6-2-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-12437" class="wp-caption-text">6.- secure the MySQL installation</figcaption></figure></p>
<p>Now, you have to create a user and database for Yetiforce.</p>
<pre>:~# mysql -u root -p
&gt; CREATE DATABASE yetiforce;
&gt; CREATE USER 'yetiforceuser'@'localhost' IDENTIFIED WITH mysql_native_password BY 'your-password';
&gt; GRANT ALL PRIVILEGES ON yetiforce.* TO 'yetiforceuser'@'localhost' WITH GRANT OPTION;
&gt; FLUSH PRIVILEGES; 
&gt; exit;</pre>
<p>Now, you can continue the process.</p>
<h3>3.- Install Yetiforce</h3>
<p>First, download Yetiforce.</p>
<pre>:~# yum install wget unzip
:~# wget https://github.com/YetiForceCompany/YetiForceCRM/releases/download/5.1.0/YetiForceCRM-5.1.0-complete.zip</pre>
<p>Next, decompress it.</p>
<pre>:~# unzip YetiForceCRM-5.1.0-complete.zip -d /var/www/html/</pre>
<p>Next, set the right permissions to the folder.</p>
<pre>:~# chown -R apache:apache /var/www/html</pre>
<p><strong>NOTE: delete the .zip file.</strong></p>
<p>Yetiforce requires external libraries that we can install using Composer.</p>
<p>Read: <a href="https://www.osradar.com/how-to-install-composer-on-linux/" rel="noopener noreferrer">How to install Composer on Linux?</a></p>
<p>And install it as the regular user:</p>
<pre>:~# exit
:~$ composer require phpunit/php-invoker</pre>
<p>Now, create a new virtual host for Yetiforce.</p>
<pre>:~$ su
:~# nano nano /etc/httpd/conf.d/yetiforce.conf</pre>
<p>And add the following:</p>
<pre>&lt;VirtualHost *:80&gt; 
  ServerAdmin admin@your_domain.com
  DocumentRoot /var/www/html/
  ServerName your_domain.com
  ServerAlias www.your_domain.com
  
&lt;Directory /var/www/html/&gt; 
    Options FollowSymLinks
    AllowOverride All
    Order allow,deny
    allow from all
&lt;/Directory&gt; 
ErrorLog /var/log/httpd/your_domain.com-error_log
CustomLog /var/log/httpd/your_domain.com-access_log common
&lt;/VirtualHost&gt;</pre>
<p>Replace your_domain with yours. And restart apache.</p>
<pre>:~# systemctl restart httpd</pre>
<p>After that, we need to complete the installation.</p>
<h3>4.- Complete the yetiforce installation using the web interface</h3>
<p>Now, open your web browser and access your server to complete the installation.</p>
<p><figure id="attachment_12438" aria-describedby="caption-attachment-12438" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12438" src="https://www.osradar.com/wp-content/uploads/2019/06/7-1.png" alt="7.- Install Yetiforce on CentOS 7" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2019/06/7-1.png 1366w, https://www.osradar.com/wp-content/uploads/2019/06/7-1-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/06/7-1-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/06/7-1-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/06/7-1-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/06/7-1-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/06/7-1-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2019/06/7-1-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-12438" class="wp-caption-text">7.- Install Yetiforce on CentOS 7</figcaption></figure></p>
<p>Then, accept the terms of the license.</p>
<p><figure id="attachment_12439" aria-describedby="caption-attachment-12439" style="width: 1366px" class="wp-caption aligncenter"><img loading="lazy" class="size-full wp-image-12439" src="https://www.osradar.com/wp-content/uploads/2019/06/8-1.png" alt="8.- Yetiforce license terms" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2019/06/8-1.png 1366w, https://www.osradar.com/wp-content/uploads/2019/06/8-1-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/06/8-1-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/06/8-1-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/06/8-1-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/06/8-1-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/06/8-1-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2019/06/8-1-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-12439" class="wp-caption-text">8.- Yetiforce license terms</figcaption></figure></p>
<p>After that, you have to type the database credentials and admin information.</p>
<p><figure id="attachment_12440" aria-describedby="caption-attachment-12440" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12440" src="https://www.osradar.com/wp-content/uploads/2019/06/9.png" alt="9.- Database credentials" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2019/06/9.png 1366w, https://www.osradar.com/wp-content/uploads/2019/06/9-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/06/9-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/06/9-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/06/9-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/06/9-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/06/9-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2019/06/9-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-12440" class="wp-caption-text">9.- Database credentials</figcaption></figure></p>
<p>Next, confirm the configuration settings.</p>
<p><figure id="attachment_12441" aria-describedby="caption-attachment-12441" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12441" src="https://www.osradar.com/wp-content/uploads/2019/06/10.png" alt="10.- Configure Yetiforce on CentOS 7" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2019/06/10.png 1366w, https://www.osradar.com/wp-content/uploads/2019/06/10-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/06/10-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/06/10-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/06/10-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/06/10-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/06/10-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2019/06/10-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-12441" class="wp-caption-text">10.- Configure Yetiforce on CentOS 7</figcaption></figure></p>
<p>Then, enter the company details.</p>
<p><figure id="attachment_12442" aria-describedby="caption-attachment-12442" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12442" src="https://www.osradar.com/wp-content/uploads/2019/06/11.png" alt="11.- Configuring Yetiforce on CentOS 7" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2019/06/11.png 1366w, https://www.osradar.com/wp-content/uploads/2019/06/11-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/06/11-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/06/11-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/06/11-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/06/11-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/06/11-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2019/06/11-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-12442" class="wp-caption-text">11.- Configuring Yetiforce on CentOS 7</figcaption></figure></p>
<p>Next, the installation will begin.</p>
<p><figure id="attachment_12443" aria-describedby="caption-attachment-12443" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12443" src="https://www.osradar.com/wp-content/uploads/2019/06/12.png" alt="12.- Install Yetiforce" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2019/06/12.png 1366w, https://www.osradar.com/wp-content/uploads/2019/06/12-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/06/12-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/06/12-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/06/12-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/06/12-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/06/12-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2019/06/12-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-12443" class="wp-caption-text">12.- Install Yetiforce</figcaption></figure></p>
<p>When the process is finished you will see the Yetiforce dashboard.</p>
<p><figure id="attachment_12444" aria-describedby="caption-attachment-12444" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12444" src="https://www.osradar.com/wp-content/uploads/2019/06/13.png" alt="13.- Yetiforce dashboard" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2019/06/13.png 1366w, https://www.osradar.com/wp-content/uploads/2019/06/13-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/06/13-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/06/13-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/06/13-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/06/13-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/06/13-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2019/06/13-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-12444" class="wp-caption-text">13.- Yetiforce dashboard</figcaption></figure></p>
<h2>Conclusion</h2>
<p>Yetiforce is a very complete application in your area. It has many features that make it the best in CRM. It has a great community and is used by many important companies.</p>
<p>Please share this post with your friends.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-yetiforce-on-centos-7/">How to install Yetiforce on CentOS 7?</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/how-to-install-yetiforce-on-centos-7/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
	</channel>
</rss>
