Hi, I have an ubuntu 11.10 on a vps online. I am having trouble finding an easy to follow guide to install tryton server. I already did what was indicated in the tutorials and have the following configuration file at: /etc/trytond.conf
vi /etc/trytond.conf #This file is Trueof Tryton. The COPYRIGHT file at the top level of #this repository contains the full copyright notices and license terms. [options] # Configure the IP address for trytond # If empty, the server will listen on all available interfaces #interface = # Activate the netrpc protocol #netrpc = True # Configure the port for the netrpc protocol to listen #netport = 8070 # Activate the xml-rpc protocol #xmlrpc = true # Configure the port for the xml-rpc protocol to listen #xmlport = 8069 # Activate the json-rpc protocol #jsonrpc = True # Configure the port for the json-rpc protocol to listen jsonport = * :8000 # Configure the path of json-rpc data #jsondata_path = /var/www/localhost/tryton # Activate the webdav protocol #webdav = True # Configure the port for the webdav protocol to listen #webdavport = 8080 # 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_maxconn = 64 # Configure the postgresql path for the executable pg_path = None # Configure the Tryton server password admin_passwd = admin # Configure the path of the files for the pid and the logs #pidfile = False #logfile = False # Enable secure connection with SSL #secure_netrpc = True #secure_xmlrpc = True #secure_jsonrpc = True #secure_webdav = True #privatekey = server.pem #certificate = server.pem # Configure the SMTP connection #smtp_server = localhost #smtp_port = 25 #smtp_ssl = False #smtp_tls = False #smtp_password = False #smtp_user = False # Configure the path to store attachments and sqlite database #data_path = /var/lib/trytond # Limit the number of threads #max_thread = 40 # 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 Unfortunately, when I connect with: root@host:~# netstat -an | grep "LISTEN" tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN tcp 0 0 173.245.5.13:53 0.0.0.0:* LISTEN tcp 0 0 127.0.0.2:53 0.0.0.0:* LISTEN tcp 0 0 127.0.0.1:53 0.0.0.0:* LISTEN tcp 0 0 127.0.0.1:5432 0.0.0.0:* LISTEN tcp 0 0 0.0.0.0:2200 0.0.0.0:* LISTEN tcp 0 0 127.0.0.1:953 0.0.0.0:* LISTEN tcp 0 0 127.0.0.1:8091 0.0.0.0:* LISTEN tcp 0 0 127.0.0.1:8092 0.0.0.0:* LISTEN tcp 0 0 127.0.0.1:3306 0.0.0.0:* LISTEN tcp6 0 0 :::53 :::* LISTEN tcp6 0 0 ::1:5432 :::* LISTEN tcp6 0 0 :::2200 :::* LISTEN tcp6 0 0 ::1:953 :::* LISTEN tcp6 0 0 :::8070 :::* LISTEN unix 2 [ ACC ] STREAM LISTENING 508266228 @/com/ubuntu/upstart unix 2 [ ACC ] STREAM LISTENING 675168734 /var/run/mysqld/mysqld.sock unix 2 [ ACC ] STREAM LISTENING 1968628190 /var/run/postgresql/.s.PGSQL.5432 And when I use the client in windows in my pc, it doesnt work. I use the ip address of the vps, port 8000 and the default admin password. let me know what is wrong thanks ariel -- [email protected] mailing list
