Hola: Soy nuevo por aquí, aunque hace mucho tiempo que conozco openerp y tryton, estoy intentado instalarlo por primera vez.
La instalación por paquetes en debian wheezy va como un tiro, vaya. Todo parece sano, ningún error en el log, cambio el archivo de configuración, hago /etc/init.d/tryton-server restart y no se queja... pero desde el cliente remoto no puedo conectar. Lo primero, me ha parecido entender, es crear una base de datos, pero el botón para enviar el formulario está desactivado y no se activa cuando completo los campos. Vamos, que ni siquiera intenta conectar... ¿alguien me puede echar una mano? Este es mi /etc/trytond.conf #This file is part of Tryton. The COPYRIGHT file at the top level of #this repository contains the full copyright notices and license terms. [options] # Activate the json-rpc protocol jsonrpc = *:8000 ssl_jsonrpc = True # This is the hostname used when generating tryton URI #hostname_jsonrpc = # Configure the path of json-rpc data #jsondata_path = /var/www/localhost/tryton # Activate the xml-rpc protocol #xmlrpc = *:8069 #ssl_xmlrpc = False # Activate the webdav protocol #webdav = *:8080 #ssl_webdav = False # This is the hostname used when generating WebDAV URI #hostname_webdav = # Configure the database type # allowed values are postgresql, sqlite, mysql db_type = postgresql # Configure the database connection ## Note: Only databases owned by db_user will be displayed in the connection dialog ## of the Tryton client. db_user must have create permission for new databases ## to be able to use automatic database creation with the Tryton client. db_host = localhost db_port = 5432 db_user = tryton db_password = xxx #db_minconn = 1 #db_maxconn = 64 # Configure the postgresql path for the executable #pg_path = None # Configure the Tryton server password admin_passwd = xxx # Configure the path of the files for the pid and the logs #pidfile = False #logfile = False privatekey = /etc/ssl/private/tryton.key certificate = /etc/ssl/certs/tryton.crt # Configure the SMTP connection smtp_server = mail.gandi.net smtp_port = 465 smtp_ssl = True #smtp_tls = False smtp_password = xxx smtp_user = email_user # Configure the path to store attachments and sqlite database data_path = /var/lib/tryton # Allow to run more than one instance of trytond #multi_server = False # Configure the session timeout (inactivity of the client in sec) #session_timeout = 600 # Enable psyco module # Need to have psyco installed http://psyco.sourceforge.net/ #psyco = False # Enable auto-reload of modules if changed #auto_reload = True # Prevent database listing #prevent_dblist = False # Enable cron # cron = True # unoconv connection #unoconv = pipe,name=trytond;urp;StarOffice.ComponentContext # Number of retries on database operational error # retry = 5 Salud, gracias
