Questo sito utilizza cookie per le proprie funzionalità e per inviarti pubblicità e servizi in linea con le tue preferenze. Chiudendo questo banner, scorrendo questa pagina o cliccando qualunque suo elemento acconsenti all’uso dei cookie.

Accedendo al link http://www.odoo-italia.org/index.php/home/cookie-policy puoi leggere in dettaglio le modalità di trattamento dei cookie da parte dell'Associazione Odoo Italia.

Benvenuto, Ospite
Nome utente: Password: Ricordami

ARGOMENTO: errore connessione server

Re:errore connessione server 8 Anni 9 Mesi fa #2119

  • pjlinux
  • Avatar di pjlinux
  • Offline
  • Senior Boarder
  • Messaggi: 53
  • Karma: 0
non so assolutamente di che stai parlando......se mi spieghi volentieri.....a presto.
L\'Amministratore ha disattivato l\'accesso in scrittura al pubblico.

Re:errore connessione server 8 Anni 9 Mesi fa #2120

  • enlightx
  • Avatar di enlightx
  • Online
  • Platinum Boarder
  • Messaggi: 6064
  • Ringraziamenti ricevuti 638
  • Karma: 85
tutti i sistemi unix permettono l'accesso remoto tramite un protocollo testuale, SSH appunto.

Se riesci a fare in modo che la porta 22 del tuo router venga redirezionata (i router solitamente lo chiamano NAT o Virtual Server) alla porta 22 dell'ip del pc dove hai installato OpenERP, potrei darti una mano.
Davide Corio
Odoo Solution Architect
email: Questo indirizzo email è protetto dagli spambots. È necessario abilitare JavaScript per vederlo.
web: www.davidecorio.com
L\'Amministratore ha disattivato l\'accesso in scrittura al pubblico.

Re:errore connessione server 8 Anni 9 Mesi fa #2126

  • pjlinux
  • Avatar di pjlinux
  • Offline
  • Senior Boarder
  • Messaggi: 53
  • Karma: 0
......ma se sapessi fare bene, e sopratutto se avessi il tempo per tutto sto ambaradan, non avrei problemi con openerp......comq mi confermi che se si effettua il login con phpPgadmin dovrei avere tutto a posto? sottolineo dovrei?
L\'Amministratore ha disattivato l\'accesso in scrittura al pubblico.

Re:errore connessione server 8 Anni 9 Mesi fa #2129

  • enlightx
  • Avatar di enlightx
  • Online
  • Platinum Boarder
  • Messaggi: 6064
  • Ringraziamenti ricevuti 638
  • Karma: 85
ieri sera ero in chat sul canale #openobject e c'era un utente svizzero che aveva bene o male il tuo stesso problema. Sembrava aver configurato tutto correttamente ma non riusciva a collegarsi con OpenERP, ma con i client postgresql si.

Alla fine mi sono fatto dare un accesso SSH ed ho trovato un errore nel file pg_hba.conf

L'installazione di OpenERP non è nulla di complesso e gli errori che si possono commettere sono pochi e circoscritti
Davide Corio
Odoo Solution Architect
email: Questo indirizzo email è protetto dagli spambots. È necessario abilitare JavaScript per vederlo.
web: www.davidecorio.com
L\'Amministratore ha disattivato l\'accesso in scrittura al pubblico.

Re:errore connessione server 8 Anni 9 Mesi fa #2139

  • pjlinux
  • Avatar di pjlinux
  • Offline
  • Senior Boarder
  • Messaggi: 53
  • Karma: 0
Bella sta roba....che è il canale di cui mi parli? comunque ti posto il file pg_hba.conf......non si sa mai e.......grazie per la pazienza e per la disponibilità professionale che mi stai offrendo!

# PostgreSQL Client Authentication Configuration File
# ===================================================
#
# Refer to the "Client Authentication" section in the
# PostgreSQL documentation for a complete description
# of this file. A short synopsis follows.
#
# This file controls: which hosts are allowed to connect, how clients
# are authenticated, which PostgreSQL user names they can use, which
# databases they can access. Records take one of these forms:
#
# local DATABASE USER METHOD [OPTIONS]
# host DATABASE USER CIDR-ADDRESS METHOD [OPTIONS]
# hostssl DATABASE USER CIDR-ADDRESS METHOD [OPTIONS]
# hostnossl DATABASE USER CIDR-ADDRESS METHOD [OPTIONS]
#
# (The uppercase items must be replaced by actual values.)
#
# The first field is the connection type: "local" is a Unix-domain socket,
# "host" is either a plain or SSL-encrypted TCP/IP socket, "hostssl" is an
# SSL-encrypted TCP/IP socket, and "hostnossl" is a plain TCP/IP socket.
#
# DATABASE can be "all", "sameuser", "samerole", a database name, or
# a comma-separated list thereof.
#
# USER can be "all", a user name, a group name prefixed with "+", or
# a comma-separated list thereof. In both the DATABASE and USER fields
# you can also write a file name prefixed with "@" to include names from
# a separate file.
#
# CIDR-ADDRESS specifies the set of hosts the record matches.
# It is made up of an IP address and a CIDR mask that is an integer
# (between 0 and 32 (IPv4) or 128 (IPv6) inclusive) that specifies
# the number of significant bits in the mask. Alternatively, you can write
# an IP address and netmask in separate columns to specify the set of hosts.
#
# METHOD can be "trust", "reject", "md5", "password", "gss", "sspi", "krb5",
# "ident", "pam", "ldap" or "cert". Note that "password" sends passwords
# in clear text; "md5" is preferred since it sends encrypted passwords.
#
# OPTIONS are a set of options for the authentication in the format
# NAME=VALUE. The available options depend on the different authentication
# methods - refer to the "Client Authentication" section in the documentation
# for a list of which options are available for which authentication methods.
#
# Database and user names containing spaces, commas, quotes and other special
# characters must be quoted. Quoting one of the keywords "all", "sameuser" or
# "samerole" makes the name lose its special character, and just match a
# database or username with that name.
#
# This file is read on server startup and when the postmaster receives
# a SIGHUP signal. If you edit the file on a running system, you have
# to SIGHUP the postmaster for the changes to take effect. You can use
# "pg_ctl reload" to do that.

# Put your actual configuration here
#
#
# If you want to allow non-local connections, you need to add more
# "host" records. In that case you will also need to make PostgreSQL listen
# on a non-local interface via the listen_addresses configuration parameter,
# or via the -i or -h command line switches.
#




# DO NOT DISABLE!
# If you change this first entry you will need to make sure that the
# database
# super user can access the database using some other method.
# Noninteractive
# access to all databases is required during automatic maintenance
# (custom daily cronjobs, replication, and similar tasks).
#
# Database administrative login by UNIX sockets
local all postgres ident

# TYPE DATABASE USER CIDR-ADDRESS METHOD

# "local" is for Unix domain socket connections only
local all all ident
# IPv4 local connections:
host all all 127.0.0.1/32 md5
# IPv6 local connections:
host all all ::1/128 md5
L\'Amministratore ha disattivato l\'accesso in scrittura al pubblico.

Re:errore connessione server 8 Anni 9 Mesi fa #2141

  • enlightx
  • Avatar di enlightx
  • Online
  • Platinum Boarder
  • Messaggi: 6064
  • Ringraziamenti ricevuti 638
  • Karma: 85
Missà che ti sei perso qualche post precedente :)

aggiungi questa riga e riavvia postgresql:

local all openerp md5


PS: al posto di openerp nella riga sopra, devi mettere il nome dell'utente postgresql che hai creato e che passi ad openerp-server per la connessione
Davide Corio
Odoo Solution Architect
email: Questo indirizzo email è protetto dagli spambots. È necessario abilitare JavaScript per vederlo.
web: www.davidecorio.com
L\'Amministratore ha disattivato l\'accesso in scrittura al pubblico.
Tempo creazione pagina: 0.140 secondi

Odoo Italia Associazione - C.F: 94200470485 - Sede: Viale dei Cadorna, 83 - Firenze - Italy

Protected by R Antispam