MirrorNest
← Alle Anleitungen

Odoo

Odoo is a suite of open-source business applications (CRM, accounting, inventory, manufacturing, website builder and more) built around a common Community-edition core, installable on Debian/Ubuntu via Odoo's own apt repository.

Zielsystem: Ubuntu 22.04 LTS or newerBusinessERPOffizielle Website ↗Offizielle Dokumentation ↗
Diese Anleitung basiert auf der offiziellen Dokumentation von Odoo, oben verlinkt — überprüfe dort immer die genauen Paket-/Versionsnamen, bevor du diese Befehle auf einem Produktionsserver ausführst, da sich Distributions- und Projektversionen mit der Zeit ändern.
  1. 1Install prerequisites

    Odoo needs a PostgreSQL server to store its data. Install it before adding the Odoo package.

    sudo apt update
    sudo apt install postgresql -y
  2. 2Add the Odoo apt repository

    Import Odoo's signing key and register its official Debian/Ubuntu package repository (this example tracks Odoo 19).

    wget -q -O - https://nightly.odoo.com/odoo.key | sudo gpg --dearmor -o /usr/share/keyrings/odoo-archive-keyring.gpg
    echo 'deb [signed-by=/usr/share/keyrings/odoo-archive-keyring.gpg] https://nightly.odoo.com/19.0/nightly/deb/ ./' | sudo tee /etc/apt/sources.list.d/odoo.list
  3. 3Install Odoo

    Update apt and install the odoo package. This sets up Odoo as a systemd service, creates the PostgreSQL role, and starts the server automatically.

    sudo apt-get update
    sudo apt-get install odoo

    The apt package installs the Community edition. Keep the system updated with the normal apt-get upgrade to receive Odoo updates.

  4. 4First login

    Odoo listens on port 8069 by default. Open it in a browser to create your first database and administrator account.

    Visit http://your-server-ip:8069 and follow the database-creation wizard.