Outils pour utilisateurs

Outils du site


odoo:install

Différences

Ci-dessous, les différences entre deux révisions de la page.

Lien vers cette vue comparative

Les deux révisions précédentesRévision précédente
Prochaine révision
Révision précédente
odoo:install [2022/01/31 08:12] rootodoo:install [2024/10/07 06:53] (Version actuelle) root
Ligne 1: Ligne 1:
-====== Odoo: Installation sur Debian 11 ======+====== Odoo: Installation v17 sur Debian 12 ====== 
 +==== Install ====
 <code bash> <code bash>
 apt install gnupg2 postgresql apt install gnupg2 postgresql
-pg_ctlcluster 13 main start+#pg_ctlcluster 13 main start
 dpkg-reconfigure locales dpkg-reconfigure locales
 dpkg-reconfigure tzdata dpkg-reconfigure tzdata
 wget -O - https://nightly.odoo.com/odoo.key | apt-key add - wget -O - https://nightly.odoo.com/odoo.key | apt-key add -
-echo "deb http://nightly.odoo.com/15.0/nightly/deb/ ./" >> /etc/apt/sources.list +echo "deb http://nightly.odoo.com/18.0/nightly/deb/ ./" >> /etc/apt/sources.list 
-apt-get update && apt-get install odoo +apt-get update && apt-get install odoo  
-service odoo start</code>+# apt-get install ttf-mscorefonts-installer 
 +service odoo start 
 +</code> 
 + 
 +==== Installation wkhtmltopdf ==== 
 +<code bash> 
 +wget wget https://github.com/wkhtmltopdf/packaging/releases/download/0.12.6.1-3/wkhtmltox_0.12.6.1-3.bookworm_amd64.deb 
 +dpkg -i wkhtmltox_0.12.6.1-3.jammy_amd64.deb 
 +</code> 
 + 
 +==== Reverse Proxy ==== 
 +apt-get install apache2 
 +a2enmod proxy proxy_http 
 +service apache2 restart 
 +a2dissite 000-default.conf  
 +nano /etc/apache2/sites-available/odoo.conf 
 + 
 +<VirtualHost *:80> 
 +    ServerName test.makeitsimple.be 
 +    ServerAdmin info@makeitsimple.be 
 + 
 +    ProxyPass / http://127.0.0.1:8069/ 
 +    ProxyPassReverse / http://127.0.0.1:8069/ 
 +    ProxyRequests Off 
 + 
 +</VirtualHost> 
 + 
 +a2ensite odoo.conf 
 + 
 + 
 +</code> 
 + 
 +Wkhtmltopdf doit peut-être être téléchargé en .deb et installé manuellement
odoo/install.1643616777.txt.gz · Dernière modification : (modification externe)