Outils personnels

OpenERP v7 - Installation sur BlueOnyx - Centos 6.4

De wikiGite

Voir où en est la traduction fr : https://translations.launchpad.net/openobject-addons/7.0/+lang/fr/+index?batch=75

Installation insipré du script de Carlos E. Fonseca Zorrilla http:forum.openerp.com/forum/topic36094.html

Dépéndances

yum -y install wget unzip
yum install http://dl.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm
yum -y install python-psycopg2 python-lxml PyXML python-setuptools libxslt-python pytz \
           python-matplotlib python-babel python-mako python-dateutil python-psycopg2 \
           pychart pydot python-reportlab python-devel python-imaging python-vobject \
           hippo-canvas-python mx python-gdata python-ldap python-openid \
           python-werkzeug python-vatnumber pygtk2 glade3 pydot python-dateutil \
           python-matplotlib pygtk2 glade3 pydot python-dateutil python-matplotlib \
           python python-devel python-psutil python-docutils make\
           automake gcc gcc-c++ kernel-devel byacc flashplugin-nonfree poppler-utils pywebdav\

Postgresql

Installation de postgresql 9.2 pour de meilleures performances :

yum install http:yum.pgrpms.org/9.2/redhat/rhel-6-i386/pgdg-centos92-9.2-6.noarch.rpm
yum -y install postgresql92-libs postgresql92-server postgresql92

service postgresql-9.2 initdb
chkconfig postgresql-9.2 on
service postgresql-9.2 start

su - postgres -c "createuser  --superuser openerp"

Gdata

cd /tmp
wget http:gdata-python-client.googlecode.com/files/gdata-2.0.17.zip
unzip gdata-2.0.17.zip
rm -rf gdata-2.0.17.zip
cd gdata*
python setup.py install

 OpenErp

cd /tmp
adduser openerp
DIR="/var/run/openerp /var/log/openerp"
for NAME in $DIR
do
if [ ! -d $NAME ]; then
  mkdir $NAME
  chown openerp.openerp $NAME
fi
done
rm -rf openerp*
wget http://nightly.openerp.com/7.0/nightly/src/openerp-7.0-latest.tar.gz
tar -zxvf openerp-7.0-latest.tar.gz  --transform 's!^[^/]\+\($\|/\)!openerp\1!'
cd openerp
python setup.py install
rm -rf /usr/local/bin/openerp-server
cp openerp-server /usr/local/bin
cp install/openerp-server.init /etc/init.d/openerp
cp install/openerp-server.conf /etc
chown openerp:openerp /etc/openerp-server.conf
chmod u+x /etc/init.d/openerp
chkconfig openerp on

Editer le fichier /etc/openerp-server.conf et ajouter :

admin_passwd = MDP_CREATION_BDD


 Mise à jour

Refaire les étapes depuis wget http://nightly.openerp.com/[...] Supprimer l'ancienne version se trouvant dans /usr/lib/python2.6/site-packages/ (se référer à la date)