RT。。。 只有部分显示中文。。。
[attach=1]
ficest
-
OPENERP 5.0.12 翻译不完全啊。 -
Ubuntu 9.10 安装 openerp 5.0.7安装 phppgadmin ,,这个跟mysql 的phpmyadmin一样的功能。
到这里下载 http://phppgadmin.sourceforge.net/?page=download ,目前是4.2.2版
因为用的是xampp,,,所以解压缩到lampp/htdocs 底下,打开 conf/config.inc.php
在 18行左右填入localhost $conf['servers'][0]['host'] = 'localhost'
接下来,在 /etc/init.d 底下,开启 postgresql : sudo ./postgresql-8.4 start
然后进phppgadmin用新增的使用者名称,密码,如果可以login ,就是ok了
3:安装 openerp server
要先安装python 2.6。我的ubuntu 有python 3.0 和2.6 ,default是2.6
安装所需library
sudo apt-get install python-psycopg2 python-reportlab python-egenix-mxdatetime python-tz python-pychart python-pydot python-lxml python-libxslt1 python-vobject
启动openerp server
到解完压缩的目录在 bin底下,执行 python openerp-server.py
如果看到 waiting for connections .... ,就是ok了
如果不清楚,参考这个 http://doc.openerp.com/install/linux/server/index.html br />
4:安装 openerp web client
首先安装开发工具
sudo apt-get install python python-dev build-essential
sudo apt-get install python-setuptools
安装过程出现了错误讯息,可能是以前我装过了。。不管,继续。
再来安装 openerp web client ,,好像之前下载是多余的。这个会自动下载anzhuang
sudo easy_install -U openerp-web
安装时间有点长,喝杯茶先。
安装好之后,执行 openerp-web ,如果看到 ENGINE Bus STARTED,就是ok了
如有不清楚,参考这个 http://doc.openerp.com/install/linux/web/index.html br />
5:测试及初始化
打开browser ,我用Chromium。输入 [检测到链接无效,已移除] 就进入登入画面了。
画面中 database 栏位是空白的,要自己设定。点击databases ,三个password都输入admin ,new database name就打 test吧。初始化就不多说了,没什么特别。
初始化完毕,进入登入画面,user 和 password都是admin 。开始研究吧
如有不清楚,参考这个 [检测到链接无效,已移除] ... reate.html
6:教程
老肖学长的教程,那是相当的好啊,,大家一起研究,,谢谢老肖。
教程 :http://http://www.shine-it.net/viewthread.php?tid=756&;extra=page%3D1
参考资料:
1:http://http://www.openerp.com
2:http://http://doc.openerp.com/install/linux/postgres/index.html
3: http://doc.openerp.com/install/linux/server/index.html br />4:http://http://www.shine-it.net/viewthread.php?tid=756&;extra=page%3D1 -
Ubuntu 9.10 server安装openerp5.09这个话题有人讨论过几次了,但是都有些问题。我把自己发现的问题和解决方案放出来,大家一起研究研究。
步骤:
1.安装前的准备
sudo apt-get update
sudo apt-get upgrade
2.自动安装5.05和数据库,及其它需要的软件包
sudo apt-get install openerp-server
3.添加数据库用户
sudo su - postgres
createuser --createdb --username postgres --no-createrole --pwprompt openerp
exit
4.手工升级为5.09
下载openerp-server-5.0.9.tar.gz
tar xvzf openerp-server-5.0.9.tar.gz
cd openerp-server-5.0.9
sudo apt-get install python2.5
sudo python2.5 setup.py install
5.重新启动openerp服务
sudo /etc/init.d/openerp-server restart
6.安装web-client
sudo apt-get install python python-dev build-essential
sudo apt-get install python-setuptools
sudo easy_install -U openerp-web
7.web-client变成服务
sudo cp /usr/local/lib/python2.6/dist-packages/openerp_web-5.0.9-py2.6.egg/scripts/openerp-web /etc/init.d/
sudo cp /usr/local/lib/python2.6/dist-packages/openerp_web-5.0.9-py2.6.egg/config/openerp-web.cfg /etc/openerp-web.cfg
sudo chmod +x /etc/init.d/openerp-web
sudo pico /etc/init.d/openerp-web
修改DAEMON=/usr/bin/openerp-web为DAEMON=/usr/local/bin/openerp-web
sudo update-rc.d openerp-web defaults
sudo /etc/init.d/openerp-web start
8.收工
为什么这么做:
•先自动安装5.05是利用apt-get的威力把需要的东西一次搞定。
•自动安装的另一个目的是可以自动设置openerp-server作为服务启动。手工安装5.09的时候,不会做这些事情。openerp-server不会加入到init.d。etc下面也没有openerp-server.conf设置文件。这对有些人可能不是问题,对我就确实是个问题。
•第四步手工升级的时候,不能用系统自带的python2.6,因为经过测试,2.6安装的时候,仅仅把.py文件copy到目的地,其他文件,像.xml等等,一概漏掉了。我发现这个问题后也曾经手工复制其余的文件过去,但是创建数据库出错。所以,python2.6其他还会导致什么问题不得而知。所以这里安装python2.5。用2.5来装5.09就正常了。
•第七步,参考了pady的帖子,在此致谢。原帖地址:http://www.shine-it.net/tinyerp/viewthread.php?tid=805&extra=page%3D1
收获:
•ubuntu明显比Windows的服务器快。
•ubuntu系统下,web客户端比gtk的客户端快。
•下一步试试64位的ubuntu server,效果应该更好。