PostgreSQL
 sql >> Base de données >  >> RDS >> PostgreSQL

SchemaSpy PostgreSQL - AVERTISSEMENT - Échec de connexion

Ok je sais enfin quel était le problème. Cette ligne schemaspy.dp=postgresql-42.2.4.jar doit être ajouté directement après la définition du type de base de données. Maintenant mon schemaspy.properties le fichier est :

# 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

Et fonctionne correctement.