Report this

What is the reason for this report?

I'm not able to connect my spring mvc application to postgres database installed on my droplet.

Posted on June 15, 2019

Both of them are installed on the droplet. I’ve enabled listen_addresses '*' in postgresql.conf and host all all 0.0.0.0/0 md5 in pg_hba.conf I’ve restarted postgres service after the changes. What am I missing? I’m also not able to connect to server postgres in local computer via pgadmin.

Spring pom:

<dependency>
			<groupId>org.postgresql</groupId>
			<artifactId>postgresql</artifactId>
			<version>9.4-1200-jdbc41</version>
		</dependency>


This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

Hello,

Make sure to also specify the correct Sprint Datasource:

spring.datasource.initialization-mode=always
spring.datasource.platform=postgres
spring.datasource.url=jdbc:postgresql://localhost:5432/your_db
spring.datasource.username=postgres_uer
spring.datasource.password=your_password

Hope that this helps. Regards, Bobby

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.