Il 30/01/2022 20:09, FrancoP ha scritto:
....
>
> Ero soddisfatto perche', dopo vari tentativi, la pagina home di Odoo era
> apparsa..
>
> Grazie
Nel frattempo ho trovato questo che prospetta una soluzione al problema:
https://bit.ly/3o85ydS
consiglia di eseguire questi comandi :
****
Il comando pip3 install cryptography non funziona se non si aggiorna
prima il pip.
Quindi io ho fatto in questo modo:
sudo su - odoo14
source venv/bin/activate
pip install --upgrade pip
pip3 install cryptography
deactivate
***
pero' lanciando il primo comando :
odoo14@dominio:~$ sudo su - odoo14
[sudo] password for odoo14:
Ma che password vuole ?
Nel tutorial :
Creating a System User
Running Odoo under the root user is not allowed, as it is a security
risk. We’ll create a new system user and group with home directory
/opt/odoo14 that will run the Odoo service. To do so, enter the
following command:
sudo useradd -m -d /opt/odoo14 -U -r -s /bin/bash odoo14
poi:
Create a configuration file with the following content:
sudo nano /etc/odoo14.conf
[options]
; This is the password that allows database operations:
admin_passwd = odoodb
db_host = False
db_port = False
db_user = odoo14
db_password = False
addons_path = /opt/odoo14/odoo/addons,/opt/odoo14/odoo-custom-addons
provato : odoodb ma non funziona
Non ho capito di che password si tratta ?
Grazie