PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

SchemaSpy PostgreSQL - AVVISO - Errore di connessione

Ok, finalmente so qual era il problema. Questa riga schemaspy.dp=postgresql-42.2.4.jar va aggiunto subito dopo la definizione del tipo di database. Ora il mio schemaspy.properties il file è:

# type of database. Run with -dbhelp for details
schemaspy.t=pgsql
# optional path to alternative jdbc drivers.
schemaspy.dp=postgresql-42.2.4.jar
# database properties: host, port number, name user, password
schemaspy.host=localhost:5431
schemaspy.port=5431
schemaspy.db=dbname
schemaspy.u=dbuser
schemaspy.p=dbpassword
# output dir to save generated files
schemaspy.o=/home/user/dump
# db scheme for which generate diagrams
schemaspy.s=public

E funziona correttamente.