<?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>Management system Archives - Linux Windows and android Tutorials</title>
	<atom:link href="https://www.osradar.com/tag/management-system/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.osradar.com</link>
	<description>tutorials and news and Seurity</description>
	<lastBuildDate>Sat, 04 Jan 2020 13:09:24 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.8.12</generator>
	<item>
		<title>How To Install Dolibarr ERP &#038; CRM on Ubuntu 18.04</title>
		<link>https://www.osradar.com/how-to-install-dolibarr-erp-crm-on-ubuntu-18-04/</link>
					<comments>https://www.osradar.com/how-to-install-dolibarr-erp-crm-on-ubuntu-18-04/#respond</comments>
		
		<dc:creator><![CDATA[sabi]]></dc:creator>
		<pubDate>Sat, 04 Jan 2020 13:09:21 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Dolibarr ERP & CRM system]]></category>
		<category><![CDATA[how to install dolibarr erp & crm management on ubuntu 18.04]]></category>
		<category><![CDATA[Management system]]></category>
		<category><![CDATA[ubuntu 18.04 Dolibarr]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=17199</guid>

					<description><![CDATA[<p>At the end of article you will be able to easily Install Dolibarr ERP &#38; CRM on Ubuntu 18.04 LTSDolibarr is a modern open source ERP &#38; CRM tool written in PHP to help you manage your organization&#8217;s activity contacts, suppliers, invoices, orders,stocks, agenda etc.For users looking for an ERP &#38; CRM that works for [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-dolibarr-erp-crm-on-ubuntu-18-04/">How To Install Dolibarr ERP &amp; CRM on Ubuntu 18.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>At the end of article you will be able to easily Install Dolibarr ERP &amp; CRM on Ubuntu 18.04 LTS<br>Dolibarr is a modern open source ERP &amp; CRM tool written in PHP to help you manage your organization&#8217;s activity contacts, suppliers, invoices, orders,stocks, agenda etc.<br>For users looking for an ERP &amp; CRM that works for small, medium or large companies, foundations and freelancers, can choose Dolibarr as it is right tool for them.</p>



<h3><strong>Requirements:</strong></h3>



<ul><li>Apache Web Server</li><li>PHP</li><li>MySQL or MariaDB database server</li></ul>



<p>Let&#8217;s proceed towards our Installation</p>



<h3><strong>Step 1: Install PHP</strong></h3>



<p>Install PHP and its extensions by executing</p>



<pre class="wp-block-verse">sudo apt udpate <br>sudo apt install -y php php-cli php-mysql php-common php-zip php-mbstring php-xmlrpc php-curl php-soap php-gd php-xml php-intl php-ldap</pre>



<p>Configure PHP settings similar to this</p>



<pre class="wp-block-verse">sudo vi /etc/php/7.2/apache2/php.ini</pre>



<p>Make the changes below:</p>



<pre class="wp-block-verse">date.timezone = <strong>Asia/Karachi</strong><br>memory_limit = <strong>256M</strong><br>upload_max_filesize = <strong>64M</strong><br>display_errors = <strong>On</strong><br>log_errors = <strong>Off</strong></pre>



<h3><strong>Step 2: Install MariaDB and Create Database</strong></h3>



<p><a href="https://www.osradar.com/install-mariadb-10-4-ubuntu-18-04/">Click here</a> if you don&#8217;t have Installed MariaDB. </p>



<p>Login to the MariaDB shell:</p>



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



<p>Create a Database &amp; user for Dolibarr ERP &amp; CRM</p>



<pre class="wp-block-verse">CREATE USER '<strong>dolibarr</strong>'@'localhost' IDENTIFIED BY '<strong>StrongPassword</strong>';<br> CREATE DATABASE dolibarr;<br> GRANT ALL PRIVILEGES ON dolibarr.* TO 'dolibarr'@'localhost';<br> FLUSH PRIVILEGES;<br> QUIT</pre>



<p>Confirm if you can log in to Database shell as dolibar user.</p>



<pre class="wp-block-verse">sabi@ubuntu:~$ mysql -u dolibarr -p<br> Enter password: <br> Welcome to the MariaDB monitor.  Commands end with ; or \g.<br> Your MariaDB connection id is 58<br> Server version: 10.1.43-MariaDB-0ubuntu0.18.04.1 Ubuntu 18.04<br> Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.<br> Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.<br> MariaDB [(none)]&gt; SHOW DATABASES;<br> +--------------------+<br> | Database           |<br> +--------------------+<br> | dolibarr           |<br> | information_schema |<br> +--------------------+<br> 2 rows in set (0.00 sec)</pre>



<h3><strong>Step 3: Download Dolibarr ERP &amp; CRM on Ubuntu 18.04</strong></h3>



<p>Now, download the latest Dolibarr ERP &amp; CRM version to Ubuntu 18.04</p>



<p>Check for the <a href="https://github.com/Dolibarr/dolibarr/releases">latest release on GitHub.</a></p>



<pre class="wp-block-verse">sabi@ubuntu:~$ wget https://github.com/Dolibarr/dolibarr/archive/develop.zip<br> --2019-12-29 17:06:00--  https://github.com/Dolibarr/dolibarr/archive/develop.zip<br> Resolving github.com (github.com)… 140.82.114.3<br> Connecting to github.com (github.com)|140.82.114.3|:443… connected.<br> HTTP request sent, awaiting response… 302 Found<br> Location: https://codeload.github.com/Dolibarr/dolibarr/zip/develop [following]<br> --2019-12-29 17:06:02--  https://codeload.github.com/Dolibarr/dolibarr/zip/develop<br> Resolving codeload.github.com (codeload.github.com)… 192.30.253.120<br> Connecting to codeload.github.com (codeload.github.com)|192.30.253.120|:443… connected.<br> HTTP request sent, awaiting response… 200 OK<br> Length: unspecified [application/zip]<br> Saving to: ‘develop.zip’<br> develop.zip             [       &lt;=&gt;         ]  61.36M   558KB/s    in 57s     <br> 2019-12-29 17:07:00 (1.08 MB/s) - ‘develop.zip’ saved [64342851]</pre>



<p>Extract the archive</p>



<pre class="wp-block-verse">unzip develop.zip</pre>



<p>Move the resulting directory to <strong>/srv/dolibarr </strong></p>



<pre class="wp-block-verse">sudo mv dolibarr-develop /srv/dolibarr</pre>



<p>After all set proper permissions</p>



<pre class="wp-block-verse">sudo chown -R www-data:www-data /srv/dolibarr</pre>



<h3><strong>Step 4: Install and Configure Apache2</strong></h3>



<p>Install Apache2 using</p>



<p>Apache2 is mostly installed if you don&#8217;t have then you can install it on Ubuntu by </p>



<pre class="wp-block-verse">sudo apt -y install apache2<br>sudo a2enmod rewrite</pre>



<p>Then check the status of Apache2</p>



<pre class="wp-block-verse">sabi@ubuntu:~$ systemctl status apache2<br> ● apache2.service - The Apache HTTP Server<br>    Loaded: loaded (/lib/systemd/system/apache2.service; enabled; vendor preset: enabled)<br>   Drop-In: /lib/systemd/system/apache2.service.d<br>            └─apache2-systemd.conf<br>    Active: <strong>active (running) </strong>since Sun 2019-12-29 16:37:32 PKT; 35min ago<br>  Main PID: 14609 (apache2)<br>     Tasks: 7 (limit: 2302)<br>    CGroup: /system.slice/apache2.service<br>            ├─14609 /usr/sbin/apache2 -k start<br>            ├─14633 /usr/sbin/apache2 -k start<br>            ├─14634 /usr/sbin/apache2 -k start<br>            ├─14635 /usr/sbin/apache2 -k start<br>            ├─14636 /usr/sbin/apache2 -k start<br>            ├─14637 /usr/sbin/apache2 -k start<br>            └─25102 /usr/sbin/apache2 -k start<br> دسمبر 29 16:37:32 ubuntu systemd[1]: Starting The Apache HTTP Server…<br> دسمبر 29 16:37:32 ubuntu apachectl[14605]: AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 127.<br> دسمبر 29 16:37:32 ubuntu systemd[1]: Started The Apache HTTP Server.<br> lines 1-19/19 (END)</pre>



<p>Then Create a Virtual Host file for vTiger</p>



<pre class="wp-block-verse">sudo vim /etc/apache2/sites-enabled/dolibarr.conf</pre>



<p>Paste the below data into above file</p>



<pre class="wp-block-verse">&lt;VirtualHost *:80&gt;<br>      ServerAdmin webmaster@example.com<br>      ServerName example.com<br>      ServerAlias www.example.com<br>      DocumentRoot /srv/dolibarr/htdocs/<br> <code> &lt;Directory /srv/dolibarr/htdocs&gt;     Options +FollowSymlinks     AllowOverride All     Require all granted  &lt;/Directory&gt;  ErrorLog /var/log/apache2/dolibarr_error.log  CustomLog /var/log/apache2/dolibarr_access.log combined</code><br> &lt;VirtualHost&gt;</pre>



<p>Verify the syntax</p>



<pre class="wp-block-verse">sudo apachectl -t <br>Syntax OK</pre>



<p>Then restart apache2 services.</p>



<pre class="wp-block-verse">sudo systemctl restart apache2</pre>



<p>Finish the Installation by opening <a href="http://example.com">http://example.com</a> in Browser. On first page you will be asked to choose the language.</p>



<p class="has-text-color has-vivid-red-color"><strong>Note: Change domain name to your own and open that in VirtualHost file</strong>.</p>



<p>Select the language and then choose <strong>next</strong> step.</p>



<p>To proceed further check all pre-requisites &amp; then click <strong>Start </strong>to begin the Installation.</p>



<div class="wp-block-image"><figure class="aligncenter size-large"><img loading="lazy" width="582" height="257" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/12/pre-requistes-checl.jpg" alt="" class="wp-image-17295" srcset="https://www.osradar.com/wp-content/uploads/2019/12/pre-requistes-checl.jpg 582w, https://www.osradar.com/wp-content/uploads/2019/12/pre-requistes-checl-300x132.jpg 300w" sizes="(max-width: 582px) 100vw, 582px" /></figure></div>



<p>Fill DataBase Information</p>



<pre class="wp-block-verse">Database name: <strong>dolibarr</strong><br>Driver type: <strong>MySQL / MariaDB</strong><br>Database server: <strong>localhost</strong><br>Login: <strong>dolibarr</strong><br>Password: <strong>StrongPassword</strong><br>Confirm settings then click <strong>Next</strong></pre>



<p>Then move to <strong>Next Step</strong> to save configurations &amp; finish the Installation. Last step is to set admin logins.</p>



<div class="wp-block-image"><figure class="aligncenter size-large"><img loading="lazy" width="569" height="128" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/12/admin-logins.jpg" alt="" class="wp-image-17296" srcset="https://www.osradar.com/wp-content/uploads/2019/12/admin-logins.jpg 569w, https://www.osradar.com/wp-content/uploads/2019/12/admin-logins-300x67.jpg 300w" sizes="(max-width: 569px) 100vw, 569px" /></figure></div>



<p>Login as an admin user to Dolibarr ERP &amp; CRM management dashboard.</p>



<div class="wp-block-image"><figure class="aligncenter size-large"><img loading="lazy" width="373" height="252" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/12/dolibarr-login.jpg" alt="" class="wp-image-17297" srcset="https://www.osradar.com/wp-content/uploads/2019/12/dolibarr-login.jpg 373w, https://www.osradar.com/wp-content/uploads/2019/12/dolibarr-login-300x203.jpg 300w" sizes="(max-width: 373px) 100vw, 373px" /></figure></div>



<p></p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-dolibarr-erp-crm-on-ubuntu-18-04/">How To Install Dolibarr ERP &amp; CRM on Ubuntu 18.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/how-to-install-dolibarr-erp-crm-on-ubuntu-18-04/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
