Unterschiede

Hier werden die Unterschiede zwischen zwei Versionen der Seite angezeigt.

Link zu der Vergleichsansicht

Beide Seiten, vorherige Überarbeitung Vorherige Überarbeitung
Nächste Überarbeitung
Vorherige Überarbeitung
Nächste ÜberarbeitungBeide Seiten, nächste Überarbeitung
server_und_serverdienste:installation_odoo13_auf_centos8 [2020/02/02 19:27] boospyserver_und_serverdienste:installation_odoo13_auf_centos8 [2020/04/13 23:07] loma
Zeile 57: Zeile 57:
 wget https://downloads.wkhtmltopdf.org/0.12/0.12.5/wkhtmltox-0.12.5-1.centos7.x86_64.rpm wget https://downloads.wkhtmltopdf.org/0.12/0.12.5/wkhtmltox-0.12.5-1.centos7.x86_64.rpm
 dnf localinstall wkhtmltox-0.12.5-1.centos7.x86_64.rpm dnf localinstall wkhtmltox-0.12.5-1.centos7.x86_64.rpm
 +dnf install compat-openssl10 libpng15
 </code> </code>
  
Zeile 132: Zeile 133:
 User=odoo User=odoo
 Group=odoo Group=odoo
-ExecStart=/opt/odoo/odoo13-venv/bin/python3-c /etc/odoo.conf+ExecStart=/opt/odoo/odoo13-venv/bin/python3 /opt/odoo/odoo13/odoo-bin -c /etc/odoo.conf
 StandardOutput=journal+console StandardOutput=journal+console
 [Install] [Install]
Zeile 336: Zeile 337:
 In the above tutorial, you learned how to install and configure Odoo 13 on CentOS 8 server. You also learned how to configure Nginx as a reverse proxy for Odoo 13. You can now customize your Odoo 13 instance as per your business needs. In the above tutorial, you learned how to install and configure Odoo 13 on CentOS 8 server. You also learned how to configure Nginx as a reverse proxy for Odoo 13. You can now customize your Odoo 13 instance as per your business needs.
  
-===== Source ===== +===== Update your Odoo over GIT ===== 
-Some Souce is from here:+<code> 
 +su - odoo 
 +</code> 
 +Next, download the latest version of the Odoo 13 from the Git repository using the git command: 
 +<code> 
 +cd /opt/odoo/odoo13 
 +git pull 
 +</code> 
 +Next, create a new virtual environment for Odoo 13 instance with the following command: 
 +<code> 
 +python3 -m venv odoo13-venv 
 +</code> 
 +Next, activate the virtual environment with the following command: 
 +<code> 
 +source odoo13-venv/bin/activate 
 +</code> 
 +You should get the following output: 
 +<code> 
 +(odoo13-venv) [odoo@centos8 ~]$ 
 +</code> 
 +Next, update all the required Python modules for Odoo 13 with the following command: 
 +<code> 
 +pip3 install -r odoo13/requirements.txt 
 +</code> 
 +Once all the required modules are updated, deactivate the virtual environment and exit from the Odoo user with the following command: 
 +<code> 
 +deactivate 
 +exit 
 +</code> 
 +And last, restart Odoo. 
 + 
 + 
 +===== Some Source ===== 
 +Some Source is from here:
 https://www.howtoforge.com/tutorial/how-to-install-odoo-erp-13-on-centos-8 https://www.howtoforge.com/tutorial/how-to-install-odoo-erp-13-on-centos-8