Skip to main content

INSTALL ODOO-10.0 Community version in debian based system(ubuntu)

INSTALL ODOO-10.0 Community version in debian based system(ubuntu)
======================================================

>>sudo wget -O - https://nightly.odoo.com/odoo.key | sudo apt-key add -

Type the below code and paste "deb http://nightly.odoo.com/10.0/nightly/deb/ ./"

>>sudo nano /etc/apt/sources.list.d/odoo.list

>>sudo apt-get update && sudo apt-get install odoo
Do you want to continue? [Y/n] (type y)

Source code
---------------
Now odoo is installed in your linux system.
Use "sudo service odoo restart" to restart odoo if you are changing the conf file settings.

You will get the source code in git.

"git clone https://github.com/odoo/odoo.git" to clone from git

Note:Better to download the zip file from above link as cloning consumes lot of time.

Odoo dependencies:
------------------------
* python 2.7(already available in linux)
* NodeJS(already available)
 To upgrade:
 >>sudo apt-get install nodejs
* NPM
 >>sudo apt-get install npm
*Postgresql(Already installed)
 You can install pgadmin if required

 create a postgres user named like your login:
 sudo su - postgres -c "createuser -s $USER"

*PIP
 >>sudo apt-get install python-pip
*Less
 >>sudo npm install -g less






After downloading Odoo-10.0 
-------------------------------------
*Goto downloaded path in terminal and type

 >>sudo pip install -r requirements.txt

 This will install all python packages required.

*Run odoo

 >>python odoo-bin -c od-config -s//for first run only

 Above command will create a config file in your folder. If you are getting a error like
 "Address already exist" change "xmlrpc_port" to some other in od-config file and save.

 >>python odoo-bin -c od-config

 To add a custom module, create the module and add path in od-config file.
 addons_path: = /media/pranav/odoo/odoo/addons,/media/pranav/odoo/addons,/media/pranav/<addons_path>


PsP☺

Comments

Popular posts from this blog

How to create multiple services of Odoo(above version 10) on windows

In this post, I will explain how we can create multiple Odoo services in a Windows Server. Step 1 First, you need to get the executable file from the Odoo link mentioned below Or open the already existing executable file.   https://www.odoo.com/page/download   If you are running the executable file for the second time uncheck Postgres installation since it is already done in the first install. Keep a note of your installation path. Step 2 Go to the below path where "Odoo 12.0 Test" is the directory your new installation files belong to: C:\Program Files (x86)\Odoo 12.0 Test\nssm\win64\ Open the command prompt  and type the below command: nssm install odoo-server-TEST   A User Interface similar to the image below will popup, you have to fill the three empty fields with values I mentioned below Step 3 Path : C:\Program Files (x86)\Odoo 12.0 Test\Python\python.exe Startup directory : C:\Program Files (x86)\Odoo 12.0 Test\server Arguments : "C:\Program Files (x86)\Odoo 1...

Odoo Tips

//create a module sudo odoo scaffold <module_name> Run odoo in server from Command line Run under root user permission python3.6 ./odoo-bin --addons=~/odoo/odoo/addons,~/odoo/pranav/<custom module>,~/odoo/accounting_reports --xmlrpc-port=8085 -d <database name> Run under different user with different DB server(Eg:Odoo) First switch to odoo user: sudo su - odoo -s /bin/bash Run the script ./odoo-bin --addons-path=/opt/odoo/addons,/opt/test_addons --db_host=<ip address> --db_port=<port> --db_password=<password> --database=<db name> -u <user name> --db-filter=<db name> --xmlrpc-port=1122 Nohup-to run a service without writing service file :- nohup python3.6 ./odoo-bin --addons=~/odoo/odoo/addons,~/odoo/pranav/<custom module>,~/odoo/accounting_reports --xmlrpc-port=8085 -d <database name> & ODOO QWEB Datetime operation ------------------------------------ <span  t-set...