<?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>ERP Archives - Linux Windows and android Tutorials</title>
	<atom:link href="https://www.osradar.com/tag/erp/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.osradar.com</link>
	<description>tutorials and news and Seurity</description>
	<lastBuildDate>Tue, 01 Jun 2021 16:14:36 +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>Install WebERP on AlmaLinux 8 / CentOS 8</title>
		<link>https://www.osradar.com/install-weberp-on-almalinux-centos/</link>
					<comments>https://www.osradar.com/install-weberp-on-almalinux-centos/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Fri, 04 Jun 2021 04:13:00 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[almalinux]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[ERP]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[weberp]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=30351</guid>

					<description><![CDATA[<p>Hello, friends. In this post, we will show you how to install WebERP on AlmaLinux OS 8.4 / CentOS 8 According to the project website: webERP is a complete web-based accounting and business management system that requires only a web-browser and pdf reader to use. It has a wide range of features suitable for many [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-weberp-on-almalinux-centos/">Install WebERP on AlmaLinux 8 / CentOS 8</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Hello, friends. In this post, we will show you how to install WebERP on AlmaLinux OS 8.4 / CentOS 8</p>



<p>According to the <a href="https://www.weberp.org/" target="_blank" rel="noreferrer noopener">project website</a>:</p>



<blockquote class="wp-block-quote"><p>webERP is a complete web-based accounting and business management system that requires only a web-browser and pdf reader to use. It has a wide range of features suitable for many businesses particularly distributed businesses in wholesale, distribution, and manufacturing.</p><p>There are 33 different language translations available all included in the archive with users all over the world.</p></blockquote>



<p>Some of the main goals that the project planned and achieved are:</p>



<ul><li>Fast, web-based, integrated “best practice” business administration software.</li><li>“Low footprint” efficient and fast, with absolutely minimal network traffic</li><li>Platform Independence with no reliance on any propriety technologies</li><li>Scripts easily readable and modifiable by a business</li></ul>



<p>So, it’s time to start work</p>



<h2 id="install-weberp-on-almalinux-os-8-/-centos-8"><a href="#install-weberp-on-almalinux-os-8-/-centos-8" name="install-weberp-on-almalinux-os-8-/-centos-8"></a>Install WebERP on AlmaLinux OS 8 / CentOS 8</h2>



<p>The first thing you have to do, is to open a new terminal session or connect via SSH and update the distribution</p>



<pre class="wp-block-preformatted">sudo dnf update</pre>



<p>Then, you have to install the LAMP stack because WebERP works as a web application. So, you can read our post about it which is compatible with AlmaLinux OS.</p>



<p><a href="https://www.osradar.com/install-lamp-stack-on-oracle-linux-8-rhel-8-centos-8/" target="_blank" rel="noreferrer noopener">How to install LAMP on CentOS 8?</a></p>



<p>Also, install some modules and packages needed for the tutorial:</p>



<pre class="wp-block-preformatted">php php-mysqli php-curl php-curl php-json php-cgi php-xmlrpc php-gd php-mbstring unzip</pre>



<p>Once this is installed, you can continue.</p>



<h3 id="creating-a-new-database-for-weberp"><a href="#creating-a-new-database-for-weberp" name="creating-a-new-database-for-weberp"></a>Creating a new database for WebERP</h3>



<p>As you can imagine, this application needs to store data and for that it is compatible with advanced database drivers such as MariaDB.</p>



<p>Although MariaDB and AlmaLinux OS are very secure, it is advisable to create a database that is managed by a MariaDB user different from the root user.</p>



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



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



<p>And create the database, the user, his password and the corresponding permissions.</p>



<pre class="wp-block-preformatted">CREATE DATABASE weberpdb;
GRANT ALL PRIVILEGES ON weberpdb.* TO 'weberpuser'@'localhost' IDENTIFIED BY 'password';
FLUSH PRIVILEGES;
EXIT;</pre>



<p>You can replace the values with whatever you want, especially the password.</p>



<h3 id="download-weberp-on-almalinux-os-8.4-/-centos-8"><a href="#download-weberp-on-almalinux-os-8.4-/-centos-8" name="download-weberp-on-almalinux-os-8.4-/-centos-8"></a>Download WebERP on AlmaLinux OS 8.4 / CentOS 8</h3>



<p>Now, with the help of the <code>wget</code> command you can download the WebERP package.</p>



<pre class="wp-block-preformatted">wget https://sourceforge.net/projects/web-erp/files/webERP_4.15.zip</pre>



<p>Unzip it inside the Apache folder.</p>



<pre class="wp-block-preformatted">sudo unzip webERP_4.15.zip -d /var/www/html</pre>



<p>Then, make Apache the owner of the folder and set the appropriate permissions:</p>



<pre class="wp-block-preformatted">sudo chown apache:apache -R /var/www/html/webERP
sudo chmod 755 -R /var/www/html/webERP</pre>



<p>Now create a new VirtualHost for webERP</p>



<pre class="wp-block-preformatted">sudo nano /etc/httpd/conf.d/weberp.conf</pre>



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



<pre class="wp-block-preformatted">&lt;VirtualHost *:80>

ServerAdmin admin@weberp.org
DocumentRoot /var/www/html/webERP
ServerName weberp.osradar.test

        &lt;Directory /var/www/html/webERP/>
                Options FollowSymLinks
                AllowOverride All
                Order allow,deny
                allow from all
        &lt;/Directory>

ErrorLog /var/log/httpd/weberp.org-error_log
CustomLog /var/log/httpd/weberp.org-access_log common
&lt;/VirtualHost></pre>



<figure class="wp-block-image size-large"><img loading="lazy" width="884" height="410" src="https://www.osradar.com/wp-content/uploads/2021/06/1-1.png" alt="1.- New VirtualHost for WebERP" class="wp-image-30418" srcset="https://www.osradar.com/wp-content/uploads/2021/06/1-1.png 884w, https://www.osradar.com/wp-content/uploads/2021/06/1-1-300x139.png 300w, https://www.osradar.com/wp-content/uploads/2021/06/1-1-768x356.png 768w, https://www.osradar.com/wp-content/uploads/2021/06/1-1-696x323.png 696w" sizes="(max-width: 884px) 100vw, 884px" /><figcaption>1.- New VirtualHost for WebERP</figcaption></figure>



<p>Replace the value of <code>ServerName</code> with your domain. Save the changes and close the edit</p>



<p>To apply the changes, restart Apache.</p>



<pre class="wp-block-preformatted">systemctl restart httpd</pre>



<h3 id="install-weberp-on-almalinux-os"><a href="#install-weberp-on-almalinux-os" name="install-weberp-on-almalinux-os"></a>Install webERP on AlmaLinux OS</h3>



<p>Now, open a web browser and access <code>http://your-server/</code> and you will see the first screen where you will have to choose the installation language</p>



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



<p>Next, set up 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/2021/06/3-1-1024x502.png" alt="3.- Installing WebERP on AlmaLinux 8 / CentOS 8" class="wp-image-30420" srcset="https://www.osradar.com/wp-content/uploads/2021/06/3-1-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2021/06/3-1-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2021/06/3-1-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2021/06/3-1-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2021/06/3-1-1068x523.png 1068w, https://www.osradar.com/wp-content/uploads/2021/06/3-1.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>3.- Installing WebERP on AlmaLinux 8 / CentOS 8</figcaption></figure>



<p>In the next step, you have to define the company name, as well as create the <code>admin</code> user and password.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="506" src="https://www.osradar.com/wp-content/uploads/2021/06/4-1-1024x506.png" alt="4.- Creating the admin account" class="wp-image-30421" srcset="https://www.osradar.com/wp-content/uploads/2021/06/4-1-1024x506.png 1024w, https://www.osradar.com/wp-content/uploads/2021/06/4-1-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2021/06/4-1-768x379.png 768w, https://www.osradar.com/wp-content/uploads/2021/06/4-1-696x344.png 696w, https://www.osradar.com/wp-content/uploads/2021/06/4-1-1068x528.png 1068w, https://www.osradar.com/wp-content/uploads/2021/06/4-1.png 1354w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>4.- Creating the admin account</figcaption></figure>



<p>After this, webERP will be installed 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/2021/06/5-1-1024x502.png" alt="5.- WebERP login screen" class="wp-image-30422" srcset="https://www.osradar.com/wp-content/uploads/2021/06/5-1-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2021/06/5-1-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2021/06/5-1-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2021/06/5-1-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2021/06/5-1-1068x523.png 1068w, https://www.osradar.com/wp-content/uploads/2021/06/5-1.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>5.- WebERP login screen</figcaption></figure>



<p>After logging in you will see the dashboard.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="522" src="https://www.osradar.com/wp-content/uploads/2021/06/6-1-1024x522.png" alt="6.- WebERP on AlmaLinux 8.4 / CentOS 8" class="wp-image-30423" srcset="https://www.osradar.com/wp-content/uploads/2021/06/6-1-1024x522.png 1024w, https://www.osradar.com/wp-content/uploads/2021/06/6-1-300x153.png 300w, https://www.osradar.com/wp-content/uploads/2021/06/6-1-768x392.png 768w, https://www.osradar.com/wp-content/uploads/2021/06/6-1-696x355.png 696w, https://www.osradar.com/wp-content/uploads/2021/06/6-1-1068x545.png 1068w, https://www.osradar.com/wp-content/uploads/2021/06/6-1.png 1365w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>6.- WebERP on AlmaLinux 8.4 / CentOS 8</figcaption></figure>



<p>Enjoy it</p>



<h2 id="conclusion"><a href="#conclusion" name="conclusion"></a>Conclusion</h2>



<p>WEbERP is a very efficient application to manage your company. The installation is easy to install and use and it’s free.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-weberp-on-almalinux-centos/">Install WebERP on AlmaLinux 8 / CentOS 8</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-weberp-on-almalinux-centos/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to install InoERP on Ubuntu 20.04 / Debian 10?</title>
		<link>https://www.osradar.com/install-inoerp-ubuntu-20-04-debian-10/</link>
					<comments>https://www.osradar.com/install-inoerp-ubuntu-20-04-debian-10/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Wed, 02 Sep 2020 04:13:00 +0000</pubDate>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[Buster]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[ERP]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[mariadb]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tutorial]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=14435</guid>

					<description><![CDATA[<p>Companies today require new applications that adapt to technological changes. Not only for the principle of effectiveness but for the optimization of resources that come from a healthy and planned administration. For this, there is ERP software. Today I will show you how to install inoERP on Ubuntu 20.4 / Debian 10. InoERP is a [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-inoerp-ubuntu-20-04-debian-10/">How to install InoERP on Ubuntu 20.04 / Debian 10?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Companies today require new applications that adapt to technological changes. Not only for the principle of effectiveness but for the optimization of resources that come from a healthy and planned administration. For this, there is ERP software. Today I will show you how to install inoERP on Ubuntu 20.4 / Debian 10.</p>
<p><a href="http://inoideas.org/" target="_blank" rel="noopener noreferrer">InoERP</a> is a web application created with <a href="https://osradar.com/tag/php/" target="_blank" rel="noopener noreferrer">PHP</a> that supports several web servers such as Apache or Nginx. It belongs to the type of ERP (Enterprise resource planning) ie it is a purely business application that helps with the planning of activities and resources of a company.</p>
<p>As a general rule, you have that any organization must have efficient planning to achieve its objectives. This is also the objective of inoERP. InoERP covers many fields within the organization, from human resources to e-commerce related tasks.</p>
<p>With too this is easy to deduce that we are in the presence of a very valuable and powerful application for our organization.</p>
<p>So, let&#8217;s get to work.</p>
<h2>Install inoERP on  Ubuntu 20.04 / Debian 10</h2>
<h3>1) Install LAMP on Ubuntu 20.04</h3>
<p>Since this is a web application, it is necessary that our team has a fully functional LAMP server. That&#8217;s the first step.</p>
<p>So, read</p>
<p><a href="https://www.osradar.com/install-lamp-ubuntu-20-04/" target="_blank" rel="noopener noreferrer">How to install LAMP on Ubuntu 20.04?</a></p>
<p>Also, install these Modules:</p>
<pre>php7.4 libapache2-mod-php7.4 php7.4-common php7.4-mysql php7.4-gmp php7.4-curl php7.4-intl php7.4-mbstring php7.4-xmlrpc php7.4-gd php7.4-bcmath php7.4-xml php7.4-cli php7.4-zip</pre>
<p>And you can continue.</p>
<h3>1.1) Install LAMP on Debian 10</h3>
<p>If you are using Debian 10 then read:</p>
<p><a href="https://www.osradar.com/install-lamp-on-debian-10/" target="_blank" rel="noopener noreferrer">How to install LAMP on Debian 10?</a></p>
<p>However, it is also necessary to install these PHP modules, so that the program runs correctly.</p>
<pre>php7.3 libapache2-mod-php7.3 php7.3-common php7.3-mysql php7.3-gmp php7.3-curl php7.3-intl php7.3-mbstring php7.3-xmlrpc php7.3-gd php7.3-bcmath php7.3-xml php7.3-cli php7.3-zip</pre>
<p>Make sure you install them.</p>
<h3>2) Create a new database for inoERP</h3>
<p>inoERP processes a lot of data. To do this efficiently, the application requires a relational <a href="https://www.osradar.com/tag/database/" target="_blank" rel="noopener noreferrer">database</a> management system such as <a href="https://osradar.com/tag/mysql/" target="_blank" rel="noopener noreferrer">MySQL</a> or <a href="https://osradar.com/tag/mariadb/" target="_blank" rel="noopener noreferrer">MariaDB</a>. But in turn, you have to create a database that will use inoERP. And as a security measure, create a dedicated user. Let&#8217;s go for it.</p>
<p>Open the MariaDB terminal and start running these commands to create the database and the new user. In turn, give permissions to this new user to use the newly created database.</p>
<pre>:~$ sudo mysql -u root -p
&gt; CREATE DATABASE inoerp;
&gt; CREATE USER 'inoerpuser'@'localhost' IDENTIFIED BY 'inoerppss';
&gt; GRANT ALL ON inoerp.* TO 'inoerpuser'@'localhost' IDENTIFIED BY 'inoerppss' WITH GRANT OPTION;
&gt; FLUSH PRIVILEGES;
&gt; exit;</pre>
<p><figure id="attachment_14501" aria-describedby="caption-attachment-14501" style="width: 1029px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-14501" src="https://www.osradar.com/wp-content/uploads/2019/10/1-8.png" alt="1.- Creating a new database for inoERP" width="1029" height="448" srcset="https://www.osradar.com/wp-content/uploads/2019/10/1-8.png 1029w, https://www.osradar.com/wp-content/uploads/2019/10/1-8-300x131.png 300w, https://www.osradar.com/wp-content/uploads/2019/10/1-8-768x334.png 768w, https://www.osradar.com/wp-content/uploads/2019/10/1-8-1024x446.png 1024w, https://www.osradar.com/wp-content/uploads/2019/10/1-8-696x303.png 696w, https://www.osradar.com/wp-content/uploads/2019/10/1-8-965x420.png 965w" sizes="(max-width: 1029px) 100vw, 1029px" /><figcaption id="caption-attachment-14501" class="wp-caption-text">1.- Creating a new database for inoERP</figcaption></figure></p>
<p>Now we can continue.</p>
<h3>3) Download and Install inoERP (I)</h3>
<p>Now it is time to download and install inoERP. To do this, we will download it using Git. Then you have to install it.</p>
<p><a href="https://www.osradar.com/install-git-on-debian-10/" target="_blank" rel="noopener noreferrer">How to install git on Debian 10?</a></p>
<p><a href="https://www.osradar.com/install-git-ubuntu-20-04/" target="_blank" rel="noopener noreferrer">How to install git on Ubuntu 20.04?</a></p>
<p>Now, just start cloning the source code.</p>
<pre>:~$ cd /var/www/html
:~$ sudo git clone https://github.com/inoerp/inoerp.git</pre>
<p><figure id="attachment_14502" aria-describedby="caption-attachment-14502" style="width: 782px" class="wp-caption alignnone"><img loading="lazy" class="wp-image-14502 size-full" src="https://www.osradar.com/wp-content/uploads/2019/10/2-6.png" alt="2.- Download and install inoERP on Ubuntu 20.04 / Debian 10" width="782" height="182" srcset="https://www.osradar.com/wp-content/uploads/2019/10/2-6.png 782w, https://www.osradar.com/wp-content/uploads/2019/10/2-6-300x70.png 300w, https://www.osradar.com/wp-content/uploads/2019/10/2-6-768x179.png 768w, https://www.osradar.com/wp-content/uploads/2019/10/2-6-696x162.png 696w" sizes="(max-width: 782px) 100vw, 782px" /><figcaption id="caption-attachment-14502" class="wp-caption-text">2.- Download and install inoERP on Ubuntu 20.04 / Debian 10</figcaption></figure></p>
<p>Next, create a new virtual host for inoERP.</p>
<pre>&lt;VirtualHost *:80&gt;
     ServerAdmin admin@osradar.test
     DocumentRoot /var/www/html/inoerp/inoerp/www
     ServerName inoerp.osradar.test
     ServerAlias www.inoerp.osradar.test

     &lt;Directory /var/www/html/inoERP/inoerp/www/&gt;
          Options FollowSymlinks
          AllowOverride All
          Require all granted
     &lt;/Directory&gt;

     ErrorLog ${APACHE_LOG_DIR}/error.log
     CustomLog ${APACHE_LOG_DIR}/access.log combined
    
     &lt;Directory /var/www/html/inoERP/inoerp/www/&gt;
            RewriteEngine on
            RewriteBase /
            RewriteCond %{REQUEST_FILENAME} !-f
            RewriteRule ^(.*) index.php [PT,L]
    &lt;/Directory&gt;
&lt;/VirtualHost&gt;</pre>
<p><figure id="attachment_23295" aria-describedby="caption-attachment-23295" style="width: 1122px" class="wp-caption alignnone"><img loading="lazy" class="wp-image-23295 size-full" src="https://www.osradar.com/wp-content/uploads/2019/10/dsn.png" alt="3.- Creating a new virtual host for inoERP on Ubuntu 20.04 / Debian 10" width="1122" height="418" srcset="https://www.osradar.com/wp-content/uploads/2019/10/dsn.png 1122w, https://www.osradar.com/wp-content/uploads/2019/10/dsn-300x112.png 300w, https://www.osradar.com/wp-content/uploads/2019/10/dsn-1024x381.png 1024w, https://www.osradar.com/wp-content/uploads/2019/10/dsn-768x286.png 768w, https://www.osradar.com/wp-content/uploads/2019/10/dsn-696x259.png 696w, https://www.osradar.com/wp-content/uploads/2019/10/dsn-1068x398.png 1068w" sizes="(max-width: 1122px) 100vw, 1122px" /><figcaption id="caption-attachment-23295" class="wp-caption-text">3.- Creating a new virtual host for inoERP on Ubuntu 20.04 / Debian 10</figcaption></figure></p>
<p>It must now be enabled for the change to take effect.</p>
<pre>:~$ sudo a2ensite inoerp.conf
:~$ sudo a2enmod rewrite
:~$ sudo systemctl restart apache2</pre>
<p>Now, we need to complete the installation using the web browser.</p>
<h3>4) Install inoERP using the web interface</h3>
<p>It is now necessary to complete the installation. Open your web browser and go to your server. You will see the following:</p>
<p><figure id="attachment_14506" aria-describedby="caption-attachment-14506" style="width: 1354px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-14506" src="https://www.osradar.com/wp-content/uploads/2019/10/5-6.png" alt="5.- Installing inoERP using the web interface" width="1354" height="669" srcset="https://www.osradar.com/wp-content/uploads/2019/10/5-6.png 1354w, https://www.osradar.com/wp-content/uploads/2019/10/5-6-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2019/10/5-6-768x379.png 768w, https://www.osradar.com/wp-content/uploads/2019/10/5-6-1024x506.png 1024w, https://www.osradar.com/wp-content/uploads/2019/10/5-6-324x160.png 324w, https://www.osradar.com/wp-content/uploads/2019/10/5-6-696x344.png 696w, https://www.osradar.com/wp-content/uploads/2019/10/5-6-1068x528.png 1068w, https://www.osradar.com/wp-content/uploads/2019/10/5-6-850x420.png 850w" sizes="(max-width: 1354px) 100vw, 1354px" /><figcaption id="caption-attachment-14506" class="wp-caption-text">5.- Installing inoERP using the web interface</figcaption></figure></p>
<p>After clicking on the continue button, you will have to enter the MariaDB credentials corresponding to inoERP.</p>
<p><figure id="attachment_14507" aria-describedby="caption-attachment-14507" style="width: 1354px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-14507" src="https://www.osradar.com/wp-content/uploads/2019/10/6-5.png" alt="6.- Database credentials" width="1354" height="669" srcset="https://www.osradar.com/wp-content/uploads/2019/10/6-5.png 1354w, https://www.osradar.com/wp-content/uploads/2019/10/6-5-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2019/10/6-5-768x379.png 768w, https://www.osradar.com/wp-content/uploads/2019/10/6-5-1024x506.png 1024w, https://www.osradar.com/wp-content/uploads/2019/10/6-5-324x160.png 324w, https://www.osradar.com/wp-content/uploads/2019/10/6-5-696x344.png 696w, https://www.osradar.com/wp-content/uploads/2019/10/6-5-1068x528.png 1068w, https://www.osradar.com/wp-content/uploads/2019/10/6-5-850x420.png 850w" sizes="(max-width: 1354px) 100vw, 1354px" /><figcaption id="caption-attachment-14507" class="wp-caption-text">6.- Database credentials</figcaption></figure></p>
<p>After this, the installation will begin. When you finish at the bottom, you will see a link to go to the home page.</p>
<p><figure id="attachment_14508" aria-describedby="caption-attachment-14508" style="width: 1354px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-14508" src="https://www.osradar.com/wp-content/uploads/2019/10/7-2.png" alt="7.- inoERP main screen" width="1354" height="669" srcset="https://www.osradar.com/wp-content/uploads/2019/10/7-2.png 1354w, https://www.osradar.com/wp-content/uploads/2019/10/7-2-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2019/10/7-2-768x379.png 768w, https://www.osradar.com/wp-content/uploads/2019/10/7-2-1024x506.png 1024w, https://www.osradar.com/wp-content/uploads/2019/10/7-2-324x160.png 324w, https://www.osradar.com/wp-content/uploads/2019/10/7-2-696x344.png 696w, https://www.osradar.com/wp-content/uploads/2019/10/7-2-1068x528.png 1068w, https://www.osradar.com/wp-content/uploads/2019/10/7-2-850x420.png 850w" sizes="(max-width: 1354px) 100vw, 1354px" /><figcaption id="caption-attachment-14508" class="wp-caption-text">7.- inoERP main screen</figcaption></figure></p>
<p>At the top right, you will see the login button. Click on it and enter your credentials. User: <strong>inoerp</strong> Password: <strong>inoerp</strong>. After that, you will see the dashboard.</p>
<p><figure id="attachment_14510" aria-describedby="caption-attachment-14510" style="width: 1354px" class="wp-caption alignnone"><img loading="lazy" class="wp-image-14510 size-full" src="https://www.osradar.com/wp-content/uploads/2019/10/8-1.png" alt="8.- inoERP on Ubuntu 20.04 / Debian 10" width="1354" height="669" srcset="https://www.osradar.com/wp-content/uploads/2019/10/8-1.png 1354w, https://www.osradar.com/wp-content/uploads/2019/10/8-1-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2019/10/8-1-768x379.png 768w, https://www.osradar.com/wp-content/uploads/2019/10/8-1-1024x506.png 1024w, https://www.osradar.com/wp-content/uploads/2019/10/8-1-324x160.png 324w, https://www.osradar.com/wp-content/uploads/2019/10/8-1-696x344.png 696w, https://www.osradar.com/wp-content/uploads/2019/10/8-1-1068x528.png 1068w, https://www.osradar.com/wp-content/uploads/2019/10/8-1-850x420.png 850w" sizes="(max-width: 1354px) 100vw, 1354px" /><figcaption id="caption-attachment-14510" class="wp-caption-text">8.- inoERP on Ubuntu 20.04 / Debian 10</figcaption></figure></p>
<p>So, start to work with this.</p>
<h2>Conclusion</h2>
<p>inoERP is a vital application for a small, medium or large organization. Thanks to this kind of software you can plan and manage resources and activities in an organization. Installing on Ubuntu 20.04 / Debian 10 is not a problem and gives a lot of results.</p>
<p>So, share this post and join <a href="https://t.me/osradar" target="_blank" rel="noopener noreferrer">our Telegram Channel</a>.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-inoerp-ubuntu-20-04-debian-10/">How to install InoERP on Ubuntu 20.04 / Debian 10?</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-inoerp-ubuntu-20-04-debian-10/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to install Odoo on Debian 10?</title>
		<link>https://www.osradar.com/install-odoo-debian-10/</link>
					<comments>https://www.osradar.com/install-odoo-debian-10/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Sat, 19 Oct 2019 00:01:10 +0000</pubDate>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[Buster]]></category>
		<category><![CDATA[ERP]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[server]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=14719</guid>

					<description><![CDATA[<p>Nowadays, companies need more and more technology to manage their processes. In fact, it is practically unthinkable a company that has an ERP capability to help with the administration of it. In this sense, several open source alternatives to proprietary solutions are emerging. The advantage of this is the license and the possibility of a [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-odoo-debian-10/">How to install Odoo on Debian 10?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Nowadays, companies need more and more technology to manage their processes.  In fact, it is practically unthinkable a company that has an ERP capability to help with the administration of it. In this sense, several open source alternatives to proprietary solutions are emerging. The advantage of this is the license and the possibility of a community support. And it can be easily installed on a Linux server. Among them is Odoo. This popular software is vital for many companies in the world. So, in this post, you will learn how to install Odoo on Debian 10 Buster. </p>



<p><a rel="noreferrer noopener" aria-label="Odoo (opens in a new tab)" href="https://www.odoo.com" target="_blank">Odoo</a> is an integrated ERP (Enterprise Resources Planning) application. That is to say, it works by installable modules that make the application have many functionalities. It currently has two versions, one of them is the community that is free and completely <g class="gr_ gr_7 gr-alert gr_spell gr_inline_cards gr_disable_anim_appear ContextualSpelling ins-del multiReplace" id="7" data-gr-id="7">open source</g> and another version Enterprise for professional corporate support. This post focuses on the community version.</p>



<p>On the other hand, the application is very powerful, with it you will manage the company contacs. In addition to orders, invoicing, warehouse management and projects.</p>



<p>So let&#8217;s get to work.</p>



<h2>Install Odoo on Debian 10</h2>



<h3>Install PostgreSQL on Debian 10</h3>



<p>While MySQL / MariaDB are great relational database management systems, Odoo prefers to use PostgreSQL. So, the first step is to install it. So open a terminal session or connect to your server:</p>



<pre class="wp-block-preformatted">:~$ sudo apt install postgresql</pre>



<figure class="wp-block-image"><img loading="lazy" width="947" height="299" src="https://www.osradar.com/wp-content/uploads/2019/10/1-10.png" alt="1.- Install postgreSQL on Debian 10" class="wp-image-14720" srcset="https://www.osradar.com/wp-content/uploads/2019/10/1-10.png 947w, https://www.osradar.com/wp-content/uploads/2019/10/1-10-300x95.png 300w, https://www.osradar.com/wp-content/uploads/2019/10/1-10-768x242.png 768w, https://www.osradar.com/wp-content/uploads/2019/10/1-10-696x220.png 696w" sizes="(max-width: 947px) 100vw, 947px" /><figcaption>1.- Install postgreSQL on Debian 10</figcaption></figure>



<p>As you can see, I have used <a rel="noreferrer noopener" aria-label="sudo that has recently been compromised (opens in a new tab)" href="https://www.osradar.com/discovered-vulnerability-sudo/" target="_blank">sudo that has recently been compromised</a> but we already have a solution. If you do not have sudo enabled you can do it with our post.</p>



<p><a href="https://www.osradar.com/how-to-enable-sudo-on-debian-10/" target="_blank" rel="noreferrer noopener" aria-label="How to enable sudo on Debian 10? (opens in a new tab)">How to enable sudo on Debian 10?</a></p>



<p>Then, after entering the password, the installation process will begin.</p>



<p>Also, it is convenient to check the status of PostgreSQL to verify that everything is going well:</p>



<pre class="wp-block-preformatted">~$ sudo systemctl status postgresql</pre>



<figure class="wp-block-image"><img loading="lazy" width="787" height="249" src="https://www.osradar.com/wp-content/uploads/2019/10/2-9.png" alt="2.- PostgreSQL is properly running" class="wp-image-14721" srcset="https://www.osradar.com/wp-content/uploads/2019/10/2-9.png 787w, https://www.osradar.com/wp-content/uploads/2019/10/2-9-300x95.png 300w, https://www.osradar.com/wp-content/uploads/2019/10/2-9-768x243.png 768w, https://www.osradar.com/wp-content/uploads/2019/10/2-9-696x220.png 696w" sizes="(max-width: 787px) 100vw, 787px" /><figcaption>2.- PostgreSQL is properly running</figcaption></figure>



<p>As you can see, everything is fine.</p>



<h3>Install Odoo on Debian 10</h3>



<p>Odoo offers a dedicated repository for quick and easy installation. But before adding the repository, you must install the package <code>gpg</code>.</p>



<pre class="wp-block-preformatted">:~$ sudo apt install gpg</pre>



<p>Then, if we can add the GPG key to the repository. This ensures that the packages are signed and secure.</p>



<pre class="wp-block-preformatted">:~$ wget -O - https://nightly.odoo.com/odoo.key | sudo apt-key add -</pre>



<figure class="wp-block-image"><img loading="lazy" width="1024" height="196" src="https://www.osradar.com/wp-content/uploads/2019/10/3-8-1024x196.png" alt="3.- Add the GPG key for the odoo repository" class="wp-image-14722" srcset="https://www.osradar.com/wp-content/uploads/2019/10/3-8-1024x196.png 1024w, https://www.osradar.com/wp-content/uploads/2019/10/3-8-300x57.png 300w, https://www.osradar.com/wp-content/uploads/2019/10/3-8-768x147.png 768w, https://www.osradar.com/wp-content/uploads/2019/10/3-8-696x133.png 696w, https://www.osradar.com/wp-content/uploads/2019/10/3-8-1068x204.png 1068w, https://www.osradar.com/wp-content/uploads/2019/10/3-8.png 1338w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>3.- Add the GPG key for the odoo repository</figcaption></figure>



<p>After that, add the repository. In this step, we need to be the root user.</p>



<pre class="wp-block-preformatted">:~$ su
:~# echo "deb http://nightly.odoo.com/13.0/nightly/deb/ ./" >> /etc/apt/sources.list.d/odoo.list
:~# exit</pre>



<p>Now, we can install Odoo by running the following commands:</p>



<pre class="wp-block-preformatted">:~$ sudo apt update
:~$ sudo apt install odoo</pre>



<figure class="wp-block-image"><img loading="lazy" width="1024" height="442" src="https://www.osradar.com/wp-content/uploads/2019/10/4-7-1024x442.png" alt="4.- Install Odoo on Debian 10" class="wp-image-14723" srcset="https://www.osradar.com/wp-content/uploads/2019/10/4-7-1024x442.png 1024w, https://www.osradar.com/wp-content/uploads/2019/10/4-7-300x129.png 300w, https://www.osradar.com/wp-content/uploads/2019/10/4-7-768x331.png 768w, https://www.osradar.com/wp-content/uploads/2019/10/4-7-696x300.png 696w, https://www.osradar.com/wp-content/uploads/2019/10/4-7-1068x461.png 1068w, https://www.osradar.com/wp-content/uploads/2019/10/4-7-973x420.png 973w, https://www.osradar.com/wp-content/uploads/2019/10/4-7.png 1365w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>4.- Install Odoo on Debian 10</figcaption></figure>



<p>Also, you can check the status of the Odoo service to verify that it is correctly installed and running.</p>



<pre class="wp-block-preformatted">:~$ sudo systemctl status odoo</pre>



<figure class="wp-block-image"><img loading="lazy" width="1024" height="240" src="https://www.osradar.com/wp-content/uploads/2019/10/5-8-1024x240.png" alt="5.- Odoo status on Debian 10" class="wp-image-14724" srcset="https://www.osradar.com/wp-content/uploads/2019/10/5-8-1024x240.png 1024w, https://www.osradar.com/wp-content/uploads/2019/10/5-8-300x70.png 300w, https://www.osradar.com/wp-content/uploads/2019/10/5-8-768x180.png 768w, https://www.osradar.com/wp-content/uploads/2019/10/5-8-696x163.png 696w, https://www.osradar.com/wp-content/uploads/2019/10/5-8.png 1031w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>5.- Odoo status on Debian 10</figcaption></figure>



<p>However, before we can use the web interface, we must configure our adminsitrative key. This is achieved by editing a line in a configuration file:</p>



<pre class="wp-block-preformatted">:~$ sudo nano /etc/odoo/odoo.conf</pre>



<p>Just replace the value in the <code>admin_passwd</code> field with your password.</p>



<figure class="wp-block-image"><img loading="lazy" width="877" height="227" src="https://www.osradar.com/wp-content/uploads/2019/10/6-7.png" alt="6.- set the admin password" class="wp-image-14725" srcset="https://www.osradar.com/wp-content/uploads/2019/10/6-7.png 877w, https://www.osradar.com/wp-content/uploads/2019/10/6-7-300x78.png 300w, https://www.osradar.com/wp-content/uploads/2019/10/6-7-768x199.png 768w, https://www.osradar.com/wp-content/uploads/2019/10/6-7-696x180.png 696w" sizes="(max-width: 877px) 100vw, 877px" /><figcaption>6.- set the admin password</figcaption></figure>



<p>Finally, restart the service:</p>



<pre class="wp-block-preformatted">:~$ sudo systemctl restart odoo</pre>



<p>Now, we can use the web interface to complete the installation.</p>



<h2>The Odoo web interface</h2>



<p>Now we can access the Odoo web interface. To do this, open your web browser and go to <code>http://your-server:8069</code>. You will see the following:</p>



<figure class="wp-block-image"><img loading="lazy" width="1024" height="525" src="https://www.osradar.com/wp-content/uploads/2019/10/7-4-1024x525.png" alt="7.- Installing Odoo on Debian 10 using the web interface" class="wp-image-14726" srcset="https://www.osradar.com/wp-content/uploads/2019/10/7-4-1024x525.png 1024w, https://www.osradar.com/wp-content/uploads/2019/10/7-4-300x154.png 300w, https://www.osradar.com/wp-content/uploads/2019/10/7-4-768x394.png 768w, https://www.osradar.com/wp-content/uploads/2019/10/7-4-696x357.png 696w, https://www.osradar.com/wp-content/uploads/2019/10/7-4-1068x548.png 1068w, https://www.osradar.com/wp-content/uploads/2019/10/7-4-818x420.png 818w, https://www.osradar.com/wp-content/uploads/2019/10/7-4.png 1140w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>7.- Installing Odoo on Debian 10 using the web interface</figcaption></figure>



<p>In this interface, all fields must be filled in with your corresponding data. Then, press the Create Database button.</p>



<p>Then, you can install some modules. Choose what you want.</p>



<figure class="wp-block-image"><img loading="lazy" width="1024" height="502" src="https://www.osradar.com/wp-content/uploads/2019/10/8-3-1024x502.png" alt="8.- The Odoo apps" class="wp-image-14727" srcset="https://www.osradar.com/wp-content/uploads/2019/10/8-3-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2019/10/8-3-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2019/10/8-3-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2019/10/8-3-324x160.png 324w, https://www.osradar.com/wp-content/uploads/2019/10/8-3-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/10/8-3-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2019/10/8-3-1068x523.png 1068w, https://www.osradar.com/wp-content/uploads/2019/10/8-3-858x420.png 858w, https://www.osradar.com/wp-content/uploads/2019/10/8-3.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>8.- The Odoo apps</figcaption></figure>



<p>Finally, you will see the main screen.</p>



<figure class="wp-block-image"><img loading="lazy" width="1024" height="502" src="https://www.osradar.com/wp-content/uploads/2019/10/9-1-1024x502.png" alt="9.- Odoo on Debian 10" class="wp-image-14728" srcset="https://www.osradar.com/wp-content/uploads/2019/10/9-1-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2019/10/9-1-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2019/10/9-1-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2019/10/9-1-324x160.png 324w, https://www.osradar.com/wp-content/uploads/2019/10/9-1-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/10/9-1-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2019/10/9-1-1068x523.png 1068w, https://www.osradar.com/wp-content/uploads/2019/10/9-1-858x420.png 858w, https://www.osradar.com/wp-content/uploads/2019/10/9-1.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>9.- Odoo on Debian 10</figcaption></figure>



<p>So, enjoy it.</p>



<h2>Conclusion</h2>



<p>Odoo is a leading application in your area. It is perhaps the most used in many medium sized companies. And it is perhaps very necessary in any company that we are. On the other hand, its installation in Debian 10 is simple and it will depend on us to make the most of it.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-odoo-debian-10/">How to install Odoo on Debian 10?</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-odoo-debian-10/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Install inoERP on Ubuntu 18.04</title>
		<link>https://www.osradar.com/install-inoerp-on-ubuntu-18-04/</link>
					<comments>https://www.osradar.com/install-inoerp-on-ubuntu-18-04/#comments</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Thu, 07 Feb 2019 11:13:57 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[bionic]]></category>
		<category><![CDATA[ERP]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[inoERP]]></category>
		<category><![CDATA[organization]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[ubuntu]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=10553</guid>

					<description><![CDATA[<p>In this modern world, it is unthinkable that an organization does not have a system to manage its processes. Fortunately, in Linux, we have many open source alternatives willing to provide solutions at a low cost. So, that is why today I&#8217;ll show you how to install inoERP on Ubuntu 18.04. InoERP is an open [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-inoerp-on-ubuntu-18-04/">Install inoERP 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>In this modern world, it is unthinkable that an organization does not have a system to manage its processes. Fortunately, in Linux, we have many open source alternatives willing to provide solutions at a low cost. So, that is why today I&#8217;ll show you how to install inoERP on Ubuntu 18.04.</p>
<p><a href="http://inoideas.org/" rel="noopener">InoERP</a> <span class="longHeading">is an open source web-based enterprise management system. So, it is built using open source technologies and has a wide range of features suitable for running various kind of businesses. In addition, the application is an <a href="https://www.osradar.com/install-odoo-12-on-debian-9/" rel="noopener">ERP</a> (Enterprise Resource Planning) ie a system where you can manage employees, payments, finance, inventory of a company. It is extremely efficient with the use of resources.</span></p>
<p>So, let us start to install inoERP.</p>
<h2>1. Install Apache web server and PHP</h2>
<p>inoERP is a web application that runs on a web server, so the first step is to install Apache and PHP.</p>
<pre class="">:~$ sudo apt install apache2 php7.2 libapache2-mod-php7.2 php7.2-common php7.2-mysql php7.2-gmp php7.2-curl php7.2-intl php7.2-mbstring php7.2-xmlrpc php7.2-gd php7.2-bcmath php7.2-xml php7.2-cli php7.2-zip</pre>
<p><figure id="attachment_10556" aria-describedby="caption-attachment-10556" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-10556" src="https://www.osradar.com/wp-content/uploads/2019/02/1-4.png" alt="1.- Install apache and PHP" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2019/02/1-4.png 1366w, https://www.osradar.com/wp-content/uploads/2019/02/1-4-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/1-4-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/1-4-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2019/02/1-4-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2019/02/1-4-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2019/02/1-4-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-10556" class="wp-caption-text">1.- Install Apache and PHP</figcaption></figure></p>
<p>Next, enable Apache to start at the boot system.</p>
<pre class="">:~$ sudo systemctl enable apache2</pre>
<p><figure id="attachment_10557" aria-describedby="caption-attachment-10557" style="width: 828px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-10557" src="https://www.osradar.com/wp-content/uploads/2019/02/2-4.png" alt="2.- Enabling apache" width="828" height="139" srcset="https://www.osradar.com/wp-content/uploads/2019/02/2-4.png 828w, https://www.osradar.com/wp-content/uploads/2019/02/2-4-300x50.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/2-4-768x129.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/2-4-696x117.png 696w" sizes="(max-width: 828px) 100vw, 828px" /><figcaption id="caption-attachment-10557" class="wp-caption-text">2.- Enabling apache</figcaption></figure></p>
<p>Now, you have to configure PHP to work with inoERP. Open the PHP configuration file:</p>
<pre class="">:~$ sudo nano /etc/php/7.2/apache2/php.ini</pre>
<p>And change the following options:</p>
<pre class="">file_uploads = On
allow_url_fopen = On
short_open_tag = On
memory_limit = 256M
upload_max_filesize = 100M
max_execution_time = 360
date.timezone = YOUR_TIMEZONE</pre>
<p><figure id="attachment_10558" aria-describedby="caption-attachment-10558" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-10558" src="https://www.osradar.com/wp-content/uploads/2019/02/3-4.png" alt="3.- PHP config" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2019/02/3-4.png 1366w, https://www.osradar.com/wp-content/uploads/2019/02/3-4-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/3-4-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/3-4-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2019/02/3-4-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2019/02/3-4-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2019/02/3-4-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-10558" class="wp-caption-text">3.- PHP config</figcaption></figure></p>
<p>After that, it is time to test PHP and Apache. To do it, create a file called <code>test.php</code> on the <code>/var/www/html/</code> folder.</p>
<pre class="">:~$ sudo nano /var/www/html/test.php</pre>
<p>So, add the following:</p>
<pre class="">&lt;?php
phpinfo();
?&gt;</pre>
<p><figure id="attachment_10559" aria-describedby="caption-attachment-10559" style="width: 285px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-10559" src="https://www.osradar.com/wp-content/uploads/2019/02/4-3.png" alt="4.- PHP test" width="285" height="190" /><figcaption id="caption-attachment-10559" class="wp-caption-text">4.- PHP test</figcaption></figure></p>
<p>Now, open the web browser and go to http://SERVER_IP/test.php and you will see this.</p>
<p><figure id="attachment_10560" aria-describedby="caption-attachment-10560" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-10560" src="https://www.osradar.com/wp-content/uploads/2019/02/5-4.png" alt="5.- PHP info" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2019/02/5-4.png 1366w, https://www.osradar.com/wp-content/uploads/2019/02/5-4-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/5-4-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/5-4-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/02/5-4-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/02/5-4-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/02/5-4-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2019/02/5-4-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-10560" class="wp-caption-text">5.- PHP info</figcaption></figure></p>
<p>So, Apache and PHP are installed.</p>
<h2>2. Install MariaDB</h2>
<p>inoERP supports several database handlers, from MariaDB to PostgreSQL through Oracle Database. In this case, I will choose MariaDB.</p>
<pre class="">:~$ sudo apt install mariadb-server</pre>
<p><figure id="attachment_10561" aria-describedby="caption-attachment-10561" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-10561" src="https://www.osradar.com/wp-content/uploads/2019/02/6-4.png" alt="6.- Install mariadb" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2019/02/6-4.png 1366w, https://www.osradar.com/wp-content/uploads/2019/02/6-4-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/6-4-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/6-4-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2019/02/6-4-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2019/02/6-4-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2019/02/6-4-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-10561" class="wp-caption-text">6.- Install MariaDB</figcaption></figure></p>
<p>Now, set the root password using the mysql_secure_installation script.</p>
<pre class="">:~$ sudo mysql_secure_installation</pre>
<p><figure id="attachment_10562" aria-describedby="caption-attachment-10562" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-10562" src="https://www.osradar.com/wp-content/uploads/2019/02/7-4.png" alt="7.- Configuring mariadb" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2019/02/7-4.png 1366w, https://www.osradar.com/wp-content/uploads/2019/02/7-4-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/7-4-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/7-4-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2019/02/7-4-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2019/02/7-4-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2019/02/7-4-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-10562" class="wp-caption-text">7.- Configuring MariaDB</figcaption></figure></p>
<p>Using this script you will not only be able to configure the root password, but also other server configurations. For this example, I will answer Y, N, Y, Y.</p>
<p>Now, create a database and user for inoERP.</p>
<pre class="">:~$ sudo mysql -u root -p
CREATE DATABASE inoerpdb;
GRANT ALL PRIVILEGES ON inoerpdb.* TO 'inoerpuser'@'localhost' IDENTIFIED BY 'inoerppss';
FLUSH PRIVILEGES;
exit;</pre>
<p><figure id="attachment_10563" aria-describedby="caption-attachment-10563" style="width: 952px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-10563" src="https://www.osradar.com/wp-content/uploads/2019/02/8-4.png" alt="8.- Creating the database for inoERP" width="952" height="455" srcset="https://www.osradar.com/wp-content/uploads/2019/02/8-4.png 952w, https://www.osradar.com/wp-content/uploads/2019/02/8-4-300x143.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/8-4-768x367.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/8-4-696x333.png 696w, https://www.osradar.com/wp-content/uploads/2019/02/8-4-879x420.png 879w" sizes="(max-width: 952px) 100vw, 952px" /><figcaption id="caption-attachment-10563" class="wp-caption-text">8.- Creating the database for inoERP</figcaption></figure></p>
<p>So, MariaDB is ready.</p>
<h2>3. Install inoERP on Ubuntu 18.04</h2>
<p>Now we will be able to install it, for it we will use git and thus clone its repository on the Apache web folder.</p>
<pre class="">:~$ sudo apt install git</pre>
<pre class="">:~$ cd /var/www/html/
:~$ sudo git clone https://github.com/inoerp/inoERP.git</pre>
<p><figure id="attachment_10564" aria-describedby="caption-attachment-10564" style="width: 764px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-10564" src="https://www.osradar.com/wp-content/uploads/2019/02/9-4.png" alt="9.- Cloning the inoERP repository" width="764" height="249" srcset="https://www.osradar.com/wp-content/uploads/2019/02/9-4.png 764w, https://www.osradar.com/wp-content/uploads/2019/02/9-4-300x98.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/9-4-696x227.png 696w" sizes="(max-width: 764px) 100vw, 764px" /><figcaption id="caption-attachment-10564" class="wp-caption-text">9.- Cloning the inoERP repository</figcaption></figure></p>
<p>After that, assign the correct permissions.</p>
<pre class="">:~$ sudo chown -R www-data:www-data /var/www/html/inoERP/
:~$ sudo chmod -R 755 /var/www/html/inoERP/</pre>
<p><figure id="attachment_10565" aria-describedby="caption-attachment-10565" style="width: 818px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-10565" src="https://www.osradar.com/wp-content/uploads/2019/02/10-4.png" alt="10.- Change the permissions" width="818" height="191" srcset="https://www.osradar.com/wp-content/uploads/2019/02/10-4.png 818w, https://www.osradar.com/wp-content/uploads/2019/02/10-4-300x70.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/10-4-768x179.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/10-4-696x163.png 696w" sizes="(max-width: 818px) 100vw, 818px" /><figcaption id="caption-attachment-10565" class="wp-caption-text">10.- Change the permissions</figcaption></figure></p>
<p>Then, create a new virtual host for using inoERP.</p>
<pre class="">:~$ sudo nano /etc/apache2/sites-available/inoERP.conf</pre>
<p>And add the following:</p>
<pre class="">&lt;VirtualHost *:80&gt;
     ServerAdmin admin@your_domain.com
     DocumentRoot /var/www/html/inoERP/inoerp/www
     ServerName inoerp.osradar.lan
     ServerAlias inoerp.osradar.lan

     &lt;Directory /var/www/html/inoERP/inoerp/www/&gt;
          Options FollowSymlinks
          AllowOverride All
          Require all granted
     &lt;/Directory&gt;

     ErrorLog ${APACHE_LOG_DIR}/error.log
     CustomLog ${APACHE_LOG_DIR}/access.log combined
    
     &lt;Directory /var/www/html/inoERP/inoerp/www/&gt;
            RewriteEngine on
            RewriteBase /
            RewriteCond %{REQUEST_FILENAME} !-f
            RewriteRule ^(.*) index.php [PT,L]
    &lt;/Directory&gt;
&lt;/VirtualHost&gt;</pre>
<p><figure id="attachment_10566" aria-describedby="caption-attachment-10566" style="width: 953px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-10566" src="https://www.osradar.com/wp-content/uploads/2019/02/11-1.png" alt="11.- Create the new virtaulhost" width="953" height="483" srcset="https://www.osradar.com/wp-content/uploads/2019/02/11-1.png 953w, https://www.osradar.com/wp-content/uploads/2019/02/11-1-300x152.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/11-1-768x389.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/11-1-696x353.png 696w, https://www.osradar.com/wp-content/uploads/2019/02/11-1-829x420.png 829w" sizes="(max-width: 953px) 100vw, 953px" /><figcaption id="caption-attachment-10566" class="wp-caption-text">11.- Create the new virtual host</figcaption></figure></p>
<p>Then, enable the new virtual host and the rewrite module.</p>
<pre class="">:~$ sudo a2ensite inoERP.conf
:~$ sudo a2enmod rewrite
:~$ sudo systemctl restart apache2</pre>
<p><figure id="attachment_10567" aria-describedby="caption-attachment-10567" style="width: 824px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-10567" src="https://www.osradar.com/wp-content/uploads/2019/02/12-1.png" alt="12.- Restart apache" width="824" height="247" srcset="https://www.osradar.com/wp-content/uploads/2019/02/12-1.png 824w, https://www.osradar.com/wp-content/uploads/2019/02/12-1-300x90.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/12-1-768x230.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/12-1-696x209.png 696w" sizes="(max-width: 824px) 100vw, 824px" /><figcaption id="caption-attachment-10567" class="wp-caption-text">12.- Restart apache</figcaption></figure></p>
<p>So, complete the installation.</p>
<h2>4. Complete the installation</h2>
<p>Open your web browser and complete the installation by going to your virtual host. And you will see this.</p>
<p><figure id="attachment_10568" aria-describedby="caption-attachment-10568" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-10568" src="https://www.osradar.com/wp-content/uploads/2019/02/13-2.png" alt="13.- Installation prerequisites" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2019/02/13-2.png 1366w, https://www.osradar.com/wp-content/uploads/2019/02/13-2-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/13-2-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/13-2-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/02/13-2-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/02/13-2-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/02/13-2-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2019/02/13-2-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-10568" class="wp-caption-text">13.- Installation prerequisites</figcaption></figure></p>
<p>Now, you have to set the databases credentials.</p>
<p><figure id="attachment_10569" aria-describedby="caption-attachment-10569" style="width: 1354px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-10569" src="https://www.osradar.com/wp-content/uploads/2019/02/14-2.png" alt="14.- Databases parameters" width="1354" height="510" srcset="https://www.osradar.com/wp-content/uploads/2019/02/14-2.png 1354w, https://www.osradar.com/wp-content/uploads/2019/02/14-2-300x113.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/14-2-768x289.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/14-2-1024x386.png 1024w, https://www.osradar.com/wp-content/uploads/2019/02/14-2-696x262.png 696w, https://www.osradar.com/wp-content/uploads/2019/02/14-2-1068x402.png 1068w, https://www.osradar.com/wp-content/uploads/2019/02/14-2-1115x420.png 1115w" sizes="(max-width: 1354px) 100vw, 1354px" /><figcaption id="caption-attachment-10569" class="wp-caption-text">14.- Databases parameters</figcaption></figure></p>
<p>After that, you can start the installation.</p>
<p><figure id="attachment_10570" aria-describedby="caption-attachment-10570" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-10570" src="https://www.osradar.com/wp-content/uploads/2019/02/15-2.png" alt="15.- Install inoERP" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2019/02/15-2.png 1366w, https://www.osradar.com/wp-content/uploads/2019/02/15-2-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/15-2-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/15-2-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/02/15-2-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/02/15-2-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/02/15-2-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2019/02/15-2-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-10570" class="wp-caption-text">15.- Install inoERP</figcaption></figure></p>
<p>At the end of the installation, go to the login page. User: inoerp and password: inoerp.</p>
<p><figure id="attachment_10571" aria-describedby="caption-attachment-10571" style="width: 650px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-10571" src="https://www.osradar.com/wp-content/uploads/2019/02/16-2.png" alt="16.- Log in" width="650" height="306" srcset="https://www.osradar.com/wp-content/uploads/2019/02/16-2.png 650w, https://www.osradar.com/wp-content/uploads/2019/02/16-2-300x141.png 300w" sizes="(max-width: 650px) 100vw, 650px" /><figcaption id="caption-attachment-10571" class="wp-caption-text">16.- Log in</figcaption></figure></p>
<p>And you will see the dashboard.</p>
<p><figure id="attachment_10572" aria-describedby="caption-attachment-10572" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-10572" src="https://www.osradar.com/wp-content/uploads/2019/02/17-2.png" alt="17.- Dashboard" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2019/02/17-2.png 1366w, https://www.osradar.com/wp-content/uploads/2019/02/17-2-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/17-2-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/17-2-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/02/17-2-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/02/17-2-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/02/17-2-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2019/02/17-2-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-10572" class="wp-caption-text">17.- Dashboard</figcaption></figure></p>
<p>So, that&#8217;s it.</p>
<h2>Conclusion</h2>
<p>Installing and managing these applications will make your business more orderly and better managed. Therefore, it is good to install inoERP to be more efficient in business processes.</p>
<p>Please share this post with your friends.</p>
<p>&nbsp;</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-inoerp-on-ubuntu-18-04/">Install inoERP 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/install-inoerp-on-ubuntu-18-04/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>How to install Odoo 12 on Debian 9?</title>
		<link>https://www.osradar.com/install-odoo-12-on-debian-9/</link>
					<comments>https://www.osradar.com/install-odoo-12-on-debian-9/#comments</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Mon, 15 Oct 2018 01:00:14 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Business]]></category>
		<category><![CDATA[companies]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[enterprise]]></category>
		<category><![CDATA[ERP]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[Inventory]]></category>
		<category><![CDATA[money]]></category>
		<category><![CDATA[Odoo]]></category>
		<category><![CDATA[Organizations]]></category>
		<category><![CDATA[planning]]></category>
		<category><![CDATA[postgresql]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Tutorial]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=6408</guid>

					<description><![CDATA[<p>Organizations use special applications for business management. Today, in this tutorial I will show you how to install Odoo 12 on Debian 9. Odoo is an open source integrated ERP system currently produced by the Belgian company Odoo S.A. In the first place, what is a ERP? The ERP (Enterprise resource planning) systems are management [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-odoo-12-on-debian-9/">How to install Odoo 12 on Debian 9?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Organizations use special applications for business management. Today, in this tutorial I will show you how to install Odoo 12 on Debian 9.</p>
<p><a href="https://www.odoo.com/" target="_blank" rel="noopener">Odoo</a> is an open source integrated ERP system currently produced by the Belgian company Odoo S.A.</p>
<p>In the first place, what is a ERP? The ERP (<strong>Enterprise resource planning</strong>) systems are management information systems that integrate and manage many of the businesses associated with production operations and distribution aspects of a company engaged in the production of goods or services. In short, it is a administration system.</p>
<p>Some Odoo modules include inventory management, finance, administration, sales and more. In addition, you can activate the modules developed by community only necessaries for your organization ensuring the proper and efficient functioning of it.</p>
<p>Odoo is compatible with Linux and today i will install it on Debian. It&#8217;s easy.</p>
<h2>0. Prerequisites</h2>
<p>To install Odoo 12 on Debian 9 does not require high knowledge of Linux but a basic <strong>knowledge of terminal use</strong>. In addition to a user who can run commands as <strong>root user.</strong></p>
<p>Under those circumstances, it is convenient to add that, Odoo requires <a href="https://www.osradar.com/how-to-install-postgresql-on-ubuntu18-04/" target="_blank" rel="noopener">PostgreSQL</a> and <a href="https://www.osradar.com/get-the-latest-python-on-linux/" target="_blank" rel="noopener">Python</a> 3.5.</p>
<p>Let&#8217;s start.</p>
<h2>1. Upgrade the system</h2>
<p>Before starting the installation of applications on our server, it is convenient to update all packages. This in order to have all the security patches and with them make the system more secure and stable. Run:</p>
<pre class="">:~$ su
:~# apt update &amp;&amp; apt upgrade</pre>
<p><figure id="attachment_6409" aria-describedby="caption-attachment-6409" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-6409" src="https://www.osradar.com/wp-content/uploads/2018/10/1-10.png" alt="1.- Upgrade Debian" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2018/10/1-10.png 1366w, https://www.osradar.com/wp-content/uploads/2018/10/1-10-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2018/10/1-10-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2018/10/1-10-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2018/10/1-10-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2018/10/1-10-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2018/10/1-10-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-6409" class="wp-caption-text">1.- Upgrade Debian</figcaption></figure></p>
<p>With this you will have Debian updated.</p>
<h2>2. Install PostgreSQL</h2>
<p>Odoo uses PostgreSQL as a database handler. Fortunately it is found in the official Debian repositories so its installation is easy.</p>
<pre class="">:~# apt install postgresql</pre>
<p><figure id="attachment_6410" aria-describedby="caption-attachment-6410" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-6410" src="https://www.osradar.com/wp-content/uploads/2018/10/2-10.png" alt="2.- Installing postgreSQL" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2018/10/2-10.png 1366w, https://www.osradar.com/wp-content/uploads/2018/10/2-10-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2018/10/2-10-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2018/10/2-10-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2018/10/2-10-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2018/10/2-10-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2018/10/2-10-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-6410" class="wp-caption-text">2.- Installing postgreSQL</figcaption></figure></p>
<p>Once the installation is finished you have to enable the service so that it starts as soon as the system boots.</p>
<pre class="">:~# systemctl enable postgresql</pre>
<p><figure id="attachment_6411" aria-describedby="caption-attachment-6411" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-6411" src="https://www.osradar.com/wp-content/uploads/2018/10/3-11.png" alt="3.- Enabling the PostgreSQL service" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2018/10/3-11.png 1366w, https://www.osradar.com/wp-content/uploads/2018/10/3-11-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2018/10/3-11-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2018/10/3-11-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2018/10/3-11-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2018/10/3-11-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2018/10/3-11-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-6411" class="wp-caption-text">3.- Enabling the PostgreSQL service</figcaption></figure></p>
<p>Then, you can check the status of the service.</p>
<pre class="">:~# systemctl status postgresql</pre>
<p><figure id="attachment_6412" aria-describedby="caption-attachment-6412" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-6412" src="https://www.osradar.com/wp-content/uploads/2018/10/4-7.png" alt="4.- Checking the PostgreSQL service" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2018/10/4-7.png 1366w, https://www.osradar.com/wp-content/uploads/2018/10/4-7-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2018/10/4-7-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2018/10/4-7-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2018/10/4-7-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2018/10/4-7-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2018/10/4-7-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-6412" class="wp-caption-text">4.- Checking the PostgreSQL service</figcaption></figure></p>
<p>As you can see, PostgreSQL has been installed.</p>
<h2>3. Install Odoo</h2>
<p>By default, Odoo is not in the official Debain 9 repositories, so add its external repository to install it via APT. It is the fastest, easiest and most efficient way to install Odoo. First, run:</p>
<pre class="">:~# wget -O - https://nightly.odoo.com/odoo.key | apt-key add -</pre>
<p><figure id="attachment_6413" aria-describedby="caption-attachment-6413" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-6413" src="https://www.osradar.com/wp-content/uploads/2018/10/5-8.png" alt="5.- Adding the Oddo repository" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2018/10/5-8.png 1366w, https://www.osradar.com/wp-content/uploads/2018/10/5-8-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2018/10/5-8-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2018/10/5-8-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2018/10/5-8-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2018/10/5-8-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2018/10/5-8-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-6413" class="wp-caption-text">5.- Adding the Oddo repository</figcaption></figure></p>
<p>Then,</p>
<pre class="">:~# echo "deb http://nightly.odoo.com/12.0/nightly/deb/ ./" &gt;&gt; /etc/apt/sources.list.d/odoo.list</pre>
<p>Now, refresh the APT package list:</p>
<pre class="">:~# apt update</pre>
<p><figure id="attachment_6414" aria-describedby="caption-attachment-6414" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-6414" src="https://www.osradar.com/wp-content/uploads/2018/10/6-7.png" alt="6.- Refresh the repository cache" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2018/10/6-7.png 1366w, https://www.osradar.com/wp-content/uploads/2018/10/6-7-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2018/10/6-7-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2018/10/6-7-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2018/10/6-7-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2018/10/6-7-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2018/10/6-7-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-6414" class="wp-caption-text">6.- Refresh the repository cache</figcaption></figure></p>
<p>Finally install Odoo:</p>
<pre class="">:~# apt install odoo</pre>
<p><figure id="attachment_6415" aria-describedby="caption-attachment-6415" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-6415" src="https://www.osradar.com/wp-content/uploads/2018/10/7-7.png" alt="7.- Install Odoo" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2018/10/7-7.png 1366w, https://www.osradar.com/wp-content/uploads/2018/10/7-7-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2018/10/7-7-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2018/10/7-7-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2018/10/7-7-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2018/10/7-7-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2018/10/7-7-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-6415" class="wp-caption-text">7.- Install Odoo</figcaption></figure></p>
<p>At the end of the installation it is convenient to check the status of the service, to check that it is running.</p>
<pre class="">:~# sytemctl status odoo</pre>
<p><figure id="attachment_6417" aria-describedby="caption-attachment-6417" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-6417" src="https://www.osradar.com/wp-content/uploads/2018/10/8-7.png" alt="8.- Checking Oddo service" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2018/10/8-7.png 1366w, https://www.osradar.com/wp-content/uploads/2018/10/8-7-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2018/10/8-7-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2018/10/8-7-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2018/10/8-7-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2018/10/8-7-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2018/10/8-7-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-6417" class="wp-caption-text">8.- Checking Oddo service</figcaption></figure></p>
<p>As can been noted, everything is OK.</p>
<h2>4.- Access from the web browser</h2>
<p>At this point, you can access the web interface, however, you need to configure a last point. The password of the user. Open <code>/etc/odoo/odoo.conf</code> file.</p>
<pre class="">:~# nano /etc/odoo/odoo.conf</pre>
<p>And set your admin password.</p>
<p><figure id="attachment_6418" aria-describedby="caption-attachment-6418" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-6418" src="https://www.osradar.com/wp-content/uploads/2018/10/9-7.png" alt="9.- Setting the admin password for Odoo" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2018/10/9-7.png 1366w, https://www.osradar.com/wp-content/uploads/2018/10/9-7-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2018/10/9-7-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2018/10/9-7-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2018/10/9-7-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2018/10/9-7-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2018/10/9-7-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-6418" class="wp-caption-text">9.- Setting the admin password for Odoo</figcaption></figure></p>
<p>Now, restart the odoo service.</p>
<pre class="">:~# systemctl restart odoo</pre>
<p>Finally, you can access from the web browser. Go to <code>http://IP_SERVER:8069</code>. And you will see this.</p>
<p><figure id="attachment_6420" aria-describedby="caption-attachment-6420" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-6420" src="https://www.osradar.com/wp-content/uploads/2018/10/10-6.png" alt="10.- Odoo default page" width="1366" height="665" srcset="https://www.osradar.com/wp-content/uploads/2018/10/10-6.png 1366w, https://www.osradar.com/wp-content/uploads/2018/10/10-6-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2018/10/10-6-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2018/10/10-6-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2018/10/10-6-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2018/10/10-6-1068x520.png 1068w, https://www.osradar.com/wp-content/uploads/2018/10/10-6-863x420.png 863w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-6420" class="wp-caption-text">10.- Odoo default page</figcaption></figure></p>
<p>Enter all the requirements they ask you and click on Create Database Button.</p>
<p>Remeber the password is the same that you defined on odoo.conf file.</p>
<p><figure id="attachment_6421" aria-describedby="caption-attachment-6421" style="width: 1140px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-6421" src="https://www.osradar.com/wp-content/uploads/2018/10/11-6.png" alt="11.- Accessing to Odoo" width="1140" height="563" srcset="https://www.osradar.com/wp-content/uploads/2018/10/11-6.png 1140w, https://www.osradar.com/wp-content/uploads/2018/10/11-6-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2018/10/11-6-768x379.png 768w, https://www.osradar.com/wp-content/uploads/2018/10/11-6-1024x506.png 1024w, https://www.osradar.com/wp-content/uploads/2018/10/11-6-324x160.png 324w, https://www.osradar.com/wp-content/uploads/2018/10/11-6-696x344.png 696w, https://www.osradar.com/wp-content/uploads/2018/10/11-6-1068x527.png 1068w, https://www.osradar.com/wp-content/uploads/2018/10/11-6-850x420.png 850w" sizes="(max-width: 1140px) 100vw, 1140px" /><figcaption id="caption-attachment-6421" class="wp-caption-text">11.- Accessing to Odoo</figcaption></figure></p>
<p>After that, you will see the screen where you can install the modules that make up the system.</p>
<p><figure id="attachment_6422" aria-describedby="caption-attachment-6422" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-6422" src="https://www.osradar.com/wp-content/uploads/2018/10/12-5.png" alt="12.- Modules available to add to Odoo" width="1366" height="665" srcset="https://www.osradar.com/wp-content/uploads/2018/10/12-5.png 1366w, https://www.osradar.com/wp-content/uploads/2018/10/12-5-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2018/10/12-5-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2018/10/12-5-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2018/10/12-5-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2018/10/12-5-1068x520.png 1068w, https://www.osradar.com/wp-content/uploads/2018/10/12-5-863x420.png 863w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-6422" class="wp-caption-text">12.- Modules available to add to Odoo</figcaption></figure></p>
<p>All that&#8217;s left is for you to install the modules you need and enjoy it.</p>
<h2>Conclusion</h2>
<p>Odoo is a great flexible system that allows you to install modules that work independently but together form a powerful tool for your company.</p>
<p>We want to hear from you, have you used Odoo? Do you like Odoo? Do you know another ERP? Did this tutorial help you?</p>
<p>Please spread this article through your social networks.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-odoo-12-on-debian-9/">How to install Odoo 12 on Debian 9?</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-odoo-12-on-debian-9/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
	</channel>
</rss>
