<?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 Installations Archives - Hostnats</title>
	<atom:link href="https://www.hostnats.com/blog/category/erp-installations/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.hostnats.com/blog/category/erp-installations/</link>
	<description>The Perfect Hosting Partner</description>
	<lastBuildDate>Mon, 30 Jun 2025 12:19:16 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://www.hostnats.com/blog/wp-content/uploads/2020/07/logo.png</url>
	<title>ERP Installations Archives - Hostnats</title>
	<link>https://www.hostnats.com/blog/category/erp-installations/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>How To Install Odoo 15 On Ubuntu?</title>
		<link>https://www.hostnats.com/blog/how-to-install-odoo-15-on-ubuntu/</link>
		
		<dc:creator><![CDATA[Gopu Kumar]]></dc:creator>
		<pubDate>Wed, 29 Dec 2021 06:14:26 +0000</pubDate>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[ERP Installations]]></category>
		<category><![CDATA[how to install odoo 15]]></category>
		<category><![CDATA[how to install odoo 15 on ubuntu?]]></category>
		<category><![CDATA[odoo installation]]></category>
		<category><![CDATA[odoo installation steps]]></category>
		<guid isPermaLink="false">https://www.helptoinstall.com/?p=4067</guid>

					<description><![CDATA[<p>Odoo&#8217;s version 14 was finally made available after a long wait.Odoo 14 was released last year and is now being prepped for release as Odoo 15.You&#8217;ll get a sneak peek at some of the new features in Odoo 15 when you read our guide.Simply follow the steps outlined below to install Odoo 15 on Ubuntu [&#8230;]</p>
<p>The post <a href="https://www.hostnats.com/blog/how-to-install-odoo-15-on-ubuntu/">How To Install Odoo 15 On Ubuntu?</a> appeared first on <a href="https://www.hostnats.com/blog">Hostnats</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Odoo&#8217;s version 14 was finally made available after a long wait.<br>Odoo 14 was released last year and is now being prepped for release as Odoo 15.<br>You&#8217;ll get a sneak peek at some of the new features in Odoo 15 when you read our guide.<br>Simply follow the steps outlined below to install Odoo 15 on Ubuntu 20.04.</p>



<h2 class="wp-block-heading has-small-font-size" id="h-install-odoo-15-on-ubuntu"><strong>Install odoo 15</strong> On Ubuntu</h2>



<p><strong>STEP 1</strong> : Update the apt source list.</p>



<pre class="wp-block-code"><code><strong>sudo apt-get update</strong></code></pre>



<p><strong>STEP 2</strong> : Create a new Odoo user and a group for that user. </p>



<pre class="wp-block-code"><code><strong>sudo adduser -system -home=/opt/odoo -group odoo</strong></code></pre>



<p><strong>STEP 3 </strong>: <a href="https://www.postgresql.org/"><mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-secondary-color">PostgreSQL</mark></a> database server should be installed and installed on the same host where odoo is running.</p>



<pre class="wp-block-code"><code><strong>sudo apt-get install -y postgresql</strong></code></pre>



<p>The following commands can be used to start the postgresql database server after the installation is completed. </p>



<pre class="wp-block-code"><code>sudo service postgresql start</code></pre>



<p>Create an odoo user in the database. </p>



<pre class="wp-block-code"><code>sudo su - postgres</code></pre>



<p>createuser &#8211;createdb &#8211;username postgres &#8211;no-createrole &#8211;no-superuser &#8211;pwprompt odoo</p>



<p>Give the newly created role a password and then double-check it by providing another password. </p>



<p>exit<br><br>Afterwards, restart the postgresql server.</p>



<pre class="wp-block-code"><code>sudo service postgresql restart </code></pre>



<p>STEP 4 On the server, install python and its dependencies. </p>



<pre class="wp-block-code"><code><strong>sudo apt-get install -y python3-pip</strong></code></pre>



<p><strong>On the server, install python and its dependencies. </strong></p>



<p>Install the required dependencies after logging in as the odoo user. </p>



<pre class="wp-block-code"><code><strong>pip3 install Babel decorator docutils ebaysdk feedparser gevent greenlet html2text Jinja2 lxml Mako MarkupSafe mock num2words ofxparse passlib Pillow psutil psycogreen psycopg2 pydot pyparsing PyPDF2 pyserial python-dateutil python-openid pytz pyusb PyYAML qrcode reportlab requests six suds-jurko vatnumber vobject Werkzeug XlsxWriter xlwt xlrd polib</strong></code></pre>



<p><strong>STEP 5 : </strong>Dependencies of Odoo&#8217;s web service </p>



<pre class="wp-block-code"><code>sudo apt-get install -y npm
sudo ln -s /usr/bin/nodejs /usr/bin/node
sudo npm install -g less less-plugin-clean-css
sudo apt-get install -y node-less
sudo python3 -m pip install libsass</code></pre>



<p><strong>STEP 6</strong> : GITHUB is a good place to get Odoo 15&#8217;s community version.</p>



<p>GIT can be installed using the command below.<br>If it&#8217;s already there, you can disregard this information. </p>



<pre class="wp-block-code"><code><strong>sudo apt-get install -y git</strong></code></pre>



<p>After that, log in as odoo user. <br></p>



<pre class="wp-block-code"><code><strong>sudo su - odoo -s /bin/bash</strong></code></pre>



<p>The following commands will clone Odoo branch 15.0 from Github: </p>



<pre class="wp-block-code"><code><strong>git clone https://www.github.com/odoo/odoo --depth 1 --branch 15.0 --single-branch</strong></code></pre>



<p>Exit the Odoo user at this point.</p>



<p><strong>STEP 7 :</strong> Make an odoo configuration file. </p>



<pre class="wp-block-code"><code><strong>sudo vim /etc/odoo-server.conf</strong></code></pre>



<p>In the configuration file, paste the following text. </p>



<pre class="wp-block-code"><code><strong>&#91;options]
; This is the password that allows database operations:
; admin_passwd = admin
db_host = False
db_port = False
db_user = odoo
db_password = False
logfile = /var/log/odoo/odoo-server.log
addons_path = /opt/odoo/odoo/addons,/opt/odoo/odoo/odoo/addons</strong></code></pre>



<p>Change the permissions and ownership of the configuration file, as shown in the following example. </p>



<pre class="wp-block-code"><code><strong>sudo chown odoo: /etc/odoo-server.conf 
sudo chmod 640 /etc/odoo-server.conf</strong></code></pre>



<p><strong>STEP 8</strong> : Create odoo log file</p>



<pre class="wp-block-code"><code><strong>sudo mkdir /var/log/odoo 
sudo chown odoo:root /var/log/odoo</strong></code></pre>



<p><strong>STEP 9 </strong>:The script can be pasted into this file by copying it. </p>



<pre class="wp-block-code"><code><strong>sudo vim /etc/init.d/odoo-server</strong></code></pre>



<p>Finally, transfer ownership and permissions. </p>



<pre class="wp-block-code"><code><strong>sudo chmod 755 /etc/init.d/odoo-server 
sudo chown root: /etc/init.d/odoo-server</strong></code></pre>



<p><strong>STEP 10</strong> : Run a test on the server as a service. </p>



<p>To get the odoo server up and running again </p>



<pre class="wp-block-code"><code><strong>sudo /etc/init.d/odoo-server start</strong></code></pre>



<p>Stop the Odoo server </p>



<pre class="wp-block-code"><code><strong>sudo /etc/init.d/odoo-server stop</strong></code></pre>



<p>Analyze the odoo logs </p>



<pre class="wp-block-code"><code><strong>tailf /var/log/odoo/odoo-server.log</strong></code></pre>



<p>Now run the following command to make this service start automatically when your computer turns on. </p>



<pre class="wp-block-code"><code><strong>update-rc.d odoo-server defaults</strong></code></pre>



<p><br><strong>STEP 11 </strong>: Run odoo locally</p>



<pre class="wp-block-code"><code><strong>sudo su - odoo -s /bin/bash 
python3 /opt/odoo/odoo-bin</strong></code></pre>



<p>After that, open a web browser and navigate to odoo15. <br><br><strong>http://localhost:8069</strong><br><br>or<br><br><strong>http://0.0.0.0:8069</strong><br><br><strong>STEP 12 </strong>: WKHTMLTOPDF<br><br><strong>wkhtmltopdf</strong> must be installed in order to print PDF reports. </p>



<pre class="wp-block-code"><code><strong>sudo wget https://builds.wkhtmltopdf.org/0.12.1.3/wkhtmltox_0.12.1.3-1~bionic_amd64.deb 
sudo apt install ./wkhtmltox_0.12.1.3-1~bionic_amd64.deb 
sudo cp /usr/local/bin/wkhtmltoimage /usr/bin/wkhtmltoimage 
sudo cp /usr/local/bin/wkhtmltopdf /usr/bin/wkhtmltopdf</strong></code></pre>



<p><strong>HelptoInstall </strong>presents you with low-cost Odoo Installation Service. We have deployed <a href="https://www.hostnats.com/blog/">our Experts</a> 24/7 for the services. <br><br><br><br><br><br><strong><br></strong><br><br><br></p>
<p>The post <a href="https://www.hostnats.com/blog/how-to-install-odoo-15-on-ubuntu/">How To Install Odoo 15 On Ubuntu?</a> appeared first on <a href="https://www.hostnats.com/blog">Hostnats</a>.</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
