Jump to content
We've recently updated our Privacy Statement, available here ×

Postgresql backup issue -


aparnagl
Go to solution Solved by vchiem,

Recommended Posts

Hi

 

We are following the steps for upgrade from 6.1.0 to 7.1.0 using this link:

https://community.jaspersoft.com/documentation/tibco-jasperreports-server-upgrade-guide/v71/upgrading-60-63-71-0#upgrading_562921741_1114058

As per the command:

PostgreSQL

cd <path>/JS_BACKUP

pg_dump --username=postgres  jasperserver  >  js-db-dump.sql

 

We received an error message:

pg_dump: [archiver (db)] connection to database "jasperserver" failed: could not connect to server: No such file or directory

Is the server running locally and accepting

connections on Unix domain socket "/var/run/postgresql/.s.PGSQL.5432"?

 

-----------

To get rid of ths error tried the following command for backup:

pg_dump jasperserver -U jasperdb -h localhost > js-db-dump-13FEB2020.sql

Although when jasperserver started using ctlscript.sh and showed that postgresql started on port 5433, I'm getting the following error message for the backup comand shown above:

connection to database "jasperserver" failed: could not connect to server: Connection refused
    Is the server running on host "localhost" (127.0.0.1) and accepting
    TCP/IP connections on port 5432?

 

How to resolve this?

 

Thanks in advance for your help.

Link to comment
Share on other sites

  • Replies 2
  • Created
  • Last Reply

Top Posters In This Topic

Top Posters In This Topic

  • Solution

The error represents a connection problem to the postgres database. 

So it is essential to firstly know whether the postgres is running and on what port number (default port is 5432). 

Once you know this information, you can use this to force the connection with extra parameters passed with the pg_dump command :

-h host 
-p port
-U username
-W

You can use this postgres command line reference as a guide:

https://www.postgresql.org/docs/9.3/app-pgdump.html

If it is still an issue and the error that you are getting remains EXACTLY the same then probably there is an incorrect path to socket. Backup tried to connect to /var/run/postgresql/.s.PGSQL.5432 but it does not exist. You can check this article:

https://stackoverflow.com/questions/31645550/why-psql-cant-connect-to-server

to check for the location of the socket file and verify the config files  pg_hba.conf and postgresql.conf accordingly.

There are a few comments that mentions to check for unix_socket_directories parameter setting.

I also recommend to check the for this setting as well:

listen_addresses = '*'

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×
×
  • Create New...