1 / 13

How to Odoo 19 Installation on Ubuntu - CandidRoot

Explore the step-by-step guide to install Odoo 19 on Ubuntu with the expert guidance of CandidRoot.<br>

Candidroot
Télécharger la présentation

How to Odoo 19 Installation on Ubuntu - CandidRoot

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Odoo 19 Installation on Ubuntu Step-by-step guide for installing Odoo 19 on Ubuntu Presented by CandidRoot Solutions | Odoo Silver Partner

  2. Step 1: Update Server sudo apt update && sudo apt upgrade -y 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 \npm node-less libjpeg-dev zlib1g-dev libpq-dev libxml2-dev libffi-dev libssl-dev \libjpeg8-dev liblcms2-dev libblas-dev libatlas-base-dev -y

  3. Step 2: Install PostgreSQL sudo apt install postgresql -y sudo -u postgres createuser -s odoo19

  4. Step 3: Create System User sudoadduser --system --home=/opt/odoo19 --group odoo19

  5. Step 4: Install Wkhtmltopdf sudo apt install xfonts-75dpi xfonts-base -y wget https://github.com/wkhtmltopdf/packaging/releases/download/0.12.6-1/wkhtmltox_0.12.6-1.focal_amd64.deb sudo apt install ./wkhtmltox_0.12.6-1.focal_amd64.deb -y

  6. Step 5: Download Odoo 19 Source sudosu - odoo19 -s /bin/bash git clone https://www.github.com/odoo/odoo --branch 19.0 --single-branch . Exit

  7. Step 6: Create Virtual Environment sudo apt install python3-venv -y sudosu - odoo19 -s /bin/bash python3 -m venvvenv source venv/bin/activate pip install wheel pip install -r requirements.txt deactivate exit

  8. Step 7: Configure Odoo Config file (/etc/odoo19.conf): [options] db_host = False db_port = False db_user = odoo19 db_password = False addons_path = /opt/odoo19/addons logfile = /var/log/odoo19/odoo.log Log directory: sudomkdir -p /var/log/odoo19 sudochown odoo19:odoo19 /var/log/odoo19

  9. Step 8: Create Systemd Service File: /etc/systemd/system/odoo19.service [Unit] Description=Odoo19 Requires=postgresql.service After=network.target postgresql.service

  10. Continue... [Service] Type=simple SyslogIdentifier=odoo19 User=odoo19 Group=odoo19 ExecStart=/opt/odoo19/venv/bin/python3 /opt/odoo19/odoo-bin -c /etc/odoo19.conf StandardOutput=journal+console [Install] WantedBy=multi-user.target

  11. Step 9: Start Odoo sudosystemctl daemon-reexec sudosystemctl enable --now odoo19 sudosystemctl status odoo19

  12. Step 10: Access Odoo 19 Open in browser: • Http://<your-server-ip>:8069 • localhost:8069 Database creation screen will appear. Master password (optional in config): admin_passwd = mypassword ✅ Done! You now have Odoo 19 running on Ubuntu.

  13. Thank You ! CandidRoot Solutions Private Limited A-358, 359, 360, Money Plant High Street,Jagatpur Rd, near BSNL Office, Gota, Ahmedabad, Gujarat 382470 +91 88490 36209 | info@candidroot.com | https://www.candidroot.com

More Related