Posts

Showing posts from September, 2020

Setting up Odoo 13 on Digital Ocean's ubuntu

Create a new VPS server in Digital Ocean.  Login using Any SSH Client (Eg: Putty or Bitwise Client) =============================================== Open a terminal and run the following commands These steps are specifically for Ubuntu Version 18.  Before proceed, please check your OS version using command  ======================== lsb_release -a  STEP 1: - Get list of updates and install them ============================================== sudo apt update && sudo apt upgrade STEP 2 - install PIP and other Dependencies ============================================ sudo apt install git python3-pip build-essential wget python3-dev python3-venv python3-wheel libxslt-dev libzip-dev libldap2-dev libsasl2-dev python3-setuptools node-less libxml2-dev STEP 3 - Create System user odoo13 with home directory /opt/odoo13  =============================================== sudo useradd -m -d /opt/odoo13 -U -r -s /bin/bash odoo13 And setup password for the new user sudo pas...