Odoo 中文社区

    • 注册
    • 登录
    • 搜索
    • 版块
    • 标签
    • 热门
    • 用户
    • 群组

    Odoo中文社区可以通过以下两个域名访问:shine-it.net , odoo.net.cn

    由于系统升迁的原因,本论坛部分较早期的内容存在格式和链接损坏失效的问题,并非本论坛系统本身的缺陷,望谅解

    本社区没有维护任何QQ群讨论组,任何与本社区同名的QQ群讨论组的言论与本社区无关!

    开发人员可以登录gitter讨论组: http://gitter.im/odoo-china/Talk, 需要github账号

    如果您登录系统碰到问题,请在微信公众号留言:

    Debian下安装Tiny ERP详细说明

    Odoo 安装指南
    4
    6
    9357
    正在加载更多帖子
    • 从旧到新
    • 从新到旧
    • 最多赞同
    回复
    • 在新帖中回复
    登录后回复
    此主题已被删除。只有拥有主题管理权限的用户可以查看。
    • D
      dmyport 最后由 编辑

      1、安装说明
      Business model on open source is often trading-off between two things, source code and knowledge. You can get any source code but detail stories for it, if you don't like their way, share your knowledge to leverage them.

      I have recently a chance to get around with TinyERP that is growing very fast on functionality, if you have no idea about Python language, to get Tiny running on Linux server is kind of tough work. Followings are my steps to complete the installation.

      1. Pre-dependencies
        * PostgreSQL server
      2. Install TinyERP server dependencies
        * Python 2.4
        o Incleded in standard base Debian 4.0 R1
        * PostgeSQL client
        o apt-get install postgresql-client
        + Default version is postgresql-7.4
        * Python and PostgreSQL adaptor
        o apt-get install python-psycopg
        * Python time zone
        o apt-get install python-tz
        * libxml2 and python binding
        o apt-get install python-xml python-libxml2
        * libxslt and python binding
        o apt-get install python-libxslt1
        * Reportlab pdf generator for Python
        o apt-get install python-reportlab
        * Python imaging library
        o apt-get install python-imaging
        * Graph visualization software
        o apt-get install graphviz
        * Pyparsing library
        o apt-get install python-pyparsing
      3. Get TinyERP server source file and install
        * wget http://tinyerp.com/download/stable/source/tinyerp-server-4.2.0.tar.gz
        * tar vxf tinyerp-server-4.2.0.tar.gz
        * cd tinyerp-server-4.2.0
        * sudo python setup.py install
        o Installation folder is /usr/lib/python2.4/site-packages/tinyerp-server
      4. Create TinyERP database
        * su - postgres
        * /usr/local/pgsql/bin/createdb --encoding=UNICODE terp
        o Assume PostgreSQL homed at /usr/local/pgsql and creating database named terp
      5. Startup TinyERP Server
        * cd /usr/lib/python2.4/site-packages/tinyerp-server
        * sudo python tinyerp-server.py -d terp -r postgres -w --db_host=localhost --db_port=5432 --logfile="tinyerp-server.log"
        o Assume the database name is terp, database owner is postgres, database server located at the same machine, database listening port is 5432, and logfile is tinyerp-server.log right in the current directory.
        o You can make a batch script (ex. run.sh) to shorten the long command typing.

      2、数据库安装疑难解答
      When the installations of the required software are done, you have to create a database. The rights on the database are given to the postgres user by default. You have to add the common-used user on which Tiny ERP is installed.

      This assumes PostgreSQL is installed and running on your server.

      For an installation which need full UTF8 character support consider to use postgres >= 8.2.x. Prior to this tiny search will eventually not return the expected results for case insensitive searches, which are used for searching partners, products etc. Example: select 'x' where 'bét' ilike 'BÉT' matches only in 8.2.x

      You have to create one database user and one database schema. (Make sure you create an Unicode database, otherwise the server won't start correctly.)

      The default superuser for PostgreSQL is called postgres. We will use it below as an example. If you wish to use it as well, you may need to login as this user first.

      johndoe$ sudo su postgres
      password: XXXXXXXXXX
      postgres$

      The default installation of PostgreSQL sets security to allow access without password for localhost connections. This is called the trust security model.

      If you run the database on the same host as the Tiny ERP server there is really no need for a password, as long as you know what you are doing (or is alone on the computer). To do without a password, simply leave the -P option out.

      on SuSE 10.3 I had to use

      $ createuser -U postgres --createdb --adduser -P terp

      to succeed

      $ createuser -U postgres --no-adduser -P terp
      enter password: XXXXXXXXXX
      repeat password: XXXXXXXXXX
      CREATE USER
      $ createdb -U postgres -O terp --encoding=UNICODE terp
      CREATE DATABASE

      Then, you can start/restart Tiny ERP Server:

      $ sudo /etc/init.d/tinyerp-server restart

      1 条回复 最后回复 回复 引用 0
      • E
        eagle5678 最后由 编辑

        ubuntu 下,不知怎的,端口占用。

        1 条回复 最后回复 回复 引用 0
        • G
          guoshi 最后由 编辑

          在ubuntu下,安装完后,运行:
          tinyerp-server -dfansmy
          出现错误提示:
          ERROR: address already in use

          请问是怎么回事?

          1 条回复 最后回复 回复 引用 0
          • D
            dmyport 最后由 编辑

            Debian(lenny)下安装使用OpenERP说明:

            数据服务器安装:# apt-get install postgresql
            相关组件安装: # apt-get install python python-psycopg python-libxml2 python-xml python-libxslt1 graphviz python-tz python-reportlab
            python-imaging python-pyparsing python-pyopenssl gs-gpl python-matplotlib python-lxml
            然后试着直接从源代码运行程序(这是python语言的特点,支持源代码级运行程序),看出错信息,若提示“**用户不存在”时,请以root用户登录终端,
            root#: su postgrest password: XXXXXXXXXX(默认为空),然后再次运行程序,应该能正常登录,祝好运。

            源代码运行程序说明(版本不同,序号会有所区别):
            服务端:/tinyERP-server-4.3/bin/tinyerp-server.py
            客户端:/tinyERP-client-4.3/bin/tinyerp-client.py

            [[i] 本帖最后由 dmyport 于 2008-9-2 21:56 编辑 [/i]]

            1 条回复 最后回复 回复 引用 0
            • digitalsatori
              digitalsatori 管理员 最后由 编辑

              address already in use 的情况多数是Open ERP服务器已启动

              【上海先安科技】(tony AT openerp.cn)

              1 条回复 最后回复 回复 引用 0
              • First post
                Last post