Ciao a tutti,
senza entrare nel merito del perchè, visto che non riesco ad andare d'accordo con "Ubuntu"
alla fine mi sono rotto e ho re-installato sul mio pc test opensuse.
Avevo bisogno di avere openerp 7 per dei test, visto che non ci sono guide per installare openerp su SuSe mi sono sbattuto e alla fine ci sono riuscito.
Vi allego le istruzioni, che sono la modifica della guida inserita nel wiki con le modifiche necessarie per SuSe.
Spero che possa essere utile a qualcuno, chiaramente è a disposizione per migliorarla ed integrarla con altre guide.
INSTALLAZIONE DI POSTGRESQL:
sudo zypper install postgresql postgresql92-server postgresql-server
CONFIGURAZIONE BASE PER POSTGRESQL:
Start postgresql server
rcpostgresql start
Swtitch user to postgres:
su - postgres
Run psql:
psql
Change password for postgres user:
postgres=# ALTER USER postgres WITH PASSWORD 'postgres';
Quit from postgres promt:
postgres=# \q
Login as root and restart server:
sudo su
rcpostgresql restart
INSERIMENTO UTENTE OPENERP:
~$su - postgres
~$createuser --createdb --username postgres --no-createrole --no-superuser --pwprompt openerp
Enter password for new role: <<<< Ricordarsi la password e l'utente (openerp) appena creati
Conferma password:
Shall the new role be allowed to create more new roles? (s/n) n
~$ exit
logout
~$
MODIFICHE DA EFFETTUARE ALLA CONFIGURAZIONE STANDART DI POSTGRESQL:
In file /var/lib/pgsql/data/pg_hba.conf you should replace peer and ident authentication method with trust method, so this lines:
1.# "local" is for Unix domain socket connections only
2.local all all peer
3.# IPv4 local connections:
4.host all all 127.0.0.1/32 ident
VANNO MODIFICATE LE PRIME DUE RIGHE COME INDICATO:
1.# "local" is for Unix domain socket connections only
2.local all all trust
3.# IPv4 local connections:
4.host all all 127.0.0.1/32 trust
OLTRE A QUANTO SOPRA VA AGGIUNTA LA CONNESSIONE PER OPENERP:
aggiungere, dove indicato qui sotto, la riga: local all openerp md5
# Database administrative login by UNIX sockets
local all postgres ident sameuser
# TYPE DATABASE USER CIDR-ADDRESS METHOD
local all openerp md5
# "local" is for Unix domain socket connections only
local all all ident sameuser
# IPv4 local connections:
host all all 127.0.0.1/32 md5
# IPv6 local connections:
host all all ::1/128 md5
INSTALLARE LE SEGUENTI DIPENDENZE:
sudo zypper install libpq5 python-Beaker python-dateutil python-docutils python-feedparser python-gdata python-imaging python-Jinja2 python-ldap python-lxml python-Mako python-MarkupSafe python-mock python-psutil python-psycopg2 python-pyasn1 python-pyasn1-modules python-pyparsing python-python-openid python-pytz python-PyYAML python-reportlab python-simplejson python-six python-tk python-unittest2 python-Werkzeug python-xlwt tix
INSTALLARE PER AGGIUNGERE MODULI PYTHON MANCANTI:
sudo zypper install python-pip
INSTALLARE I SEGUENTI MODULI:
sudo easy_install Babel
INSTALLARE A MANO PYCHART:
download.gna.org/pychart/PyChart-1.39.tar.gz
SCOMPATTARE POI ENTRARE NELLA DIRECTORY E :
sudo python setup.py install
POI POTETE INSTALLARE OPENERP 7 SEGUENDO LE VARIE GUIDE IN RETE.