Odoo 11 Community Edition Installation unter Ubuntu 18.04 LTS (Paketmanager)

Alles was zum Thema Faktura, Doppelte Buchführung, Online-Banking etc. gehört. Für Linux/Windows/Mac
Post Reply
User avatar
h3rb3rn
Administrator
Posts: 189
Joined: Mon 9. Feb 2015, 23:29

Odoo 11 Community Edition Installation unter Ubuntu 18.04 LTS (Paketmanager)

Post by h3rb3rn »

Fassung vom 29.08.2018

In diesem Tutorial geht es nur um die Installation von Odoo 11 CE über den Paketmanager von Ubuntu 18.04 LTS.

Hinweis: dies ist meine private Installationsanleitung für mich selbst und nicht die offizielle Installationanleitung der Community. Die offizielle Anleitung findet Ihr unter https://www.odoo.com/documentation/11.0 ... stall.html

Weitere Quellen sind https://www.howtoforge.com/tutorial/ins ... untu-16-04

System vorbereiten

Code: Select all

sudo bash
Paketquellen erweitern

Code: Select all

wget -O - https://nightly.odoo.com/odoo.key | apt-key add -
echo "deb http://nightly.odoo.com/11.0/nightly/deb/ ./" >> /etc/apt/sources.list.d/odoo.list
apt update && apt install odoo && apt -f install
Damit Odoo auch PDF Dateien generieren kann muss noch das Toolkit von https://wkhtmltopdf.org/downloads.html installiert werden
Quelle: https://strmln.de/software/installation ... ntu-16-04/

Code: Select all

cd ~
wget https://downloads.wkhtmltopdf.org/0.12/0.12.5/wkhtmltox_0.12.5-1.bionic_amd64.deb
dpkg -i wkhtmltox_0.12.5-1.bionic_amd64.deb
Sicherheitshalber nochmals

Code: Select all

apt -f install
Odoo im Browser aufrufen unter http://IPdesOdooServers:8069
Post Reply