Created 06-23-2016 12:20 PM
I am trying to start ambari and it fails while starting postgres on the sandbox.
[root@sandbox ~]# ambari-server restart Using python /usr/bin/python2 Restarting ambari-server Using python /usr/bin/python2 Stopping ambari-server Ambari Server is not running Using python /usr/bin/python2 Starting ambari-server Ambari Server running with administrator privileges. Running initdb: This may take upto a minute. About to start PostgreSQL ERROR: Exiting with exit code 3. REASON: Unable to start PostgreSQL server. Status stopped. . Exiting
I tried to start postgres
[root@sandbox ~]# service postgresql start Starting postgresql service: [FAILED]
Then I ran a postgres status:
[root@sandbox ~]# service postgresql status postmaster is stopped
I am not sure how to start postmaster. I tried
[root@sandbox ~]# pg_ctl start pg_ctl: cannot be run as root Please log in (using, e.g., "su") as the (unprivileged) user that will own the server process.
Any other ideas?
Created 04-06-2017 04:36 PM
hi @Sunile Manjee: Were you able to resolve the issue?
Created 04-06-2017 04:37 PM
No. i just started all over
Created 04-06-2017 05:29 PM
oh okay. any clue on what the error might be?
Created 04-08-2017 07:27 PM
login as root
[root@Node0 ~]$ [root@Node0 ~]$ cd /var/lib/pgsql [root@Node0 ~]$ su - postgres [root@Node0 pgsql]$ sudo su - postgres -bash-4.2 $ grep listen /var/lib/pgsql/data/postgresql.conf #listen_addresses = 'localhost' # what IP address(es) to listen on;
-bash-4.2 $ vi /var/lib/pgsql/data_bkp/postgresql.conf
Find listen_address= 'localhost' and change to local_address='*', then and exit vi, then exit back to root.
service postgresql restart
Redirecting to /bin/systemctl restart postgresql.service
[root@Node0 ~]$ ambari-server setup
and accept all prompts, and when ambari-server setup will successfully complete,
[root@Node0 ~]$ ambari-server start
Ambari Server 'start' completed successfully.
Created 10-23-2017 08:23 AM
Thank you!!!... The steps worked for me.
I have small question, my linux server on which the ambari-server is running rebooted as it went unresponsive, so in this how only postgresql service stopped and other all services were running? any idea?
Created on 12-29-2017 03:54 PM - edited 08-18-2019 05:32 AM
ambari-server start
On running the above command, I was encountering the same error while starting Ambari-server, where ambari failed to start the Postgresql server with error 3.
I figured out the following solution to start ambari-server.
You can check the status using
service postgresql status
This gives the status of the service running as PostgreSQL. In case this is giving the error that the service is not running and the server failed to start, you can check the reason with the following commands:
systemctl status postgresql.service
If the reasons show anything related to the port and the listener like:
Then navigate to the following path and check the versions:
ls /var/lib/pgsql
In case you find other folders like 9.6 or 9.5, for example, 9.6, then try and check if postgresql-9.6 is running.
service postgresql-9.6 status systemctl status postgresql-9.6.service
In case you find that this is running, you will have to stop the service and chkconfig it to off.
service postgresql-9.6 stop chkconfig postgresql-9.6 off
Try and restart the ambari-server now and this might work, as the ambari server tries to start the postgresql using /var/lib/pgsql/data/postgresql.conf and not the 9.6 version configuration. In order to stop facilitate the server to use the default configuration, we have to stop the server on 9.6 version or point ambari to 9.6 version pgsql.
ambari-server start ambari-server status
Created 08-15-2019 01:43 AM
i have the same issue on HDP 3.1 upgrade where postgress service failing to start after ambari upgraded
Created 08-15-2019 01:44 AM
i have the same issue on HDP 3.1 upgrade where postgress service failing to start after ambari upgraded
Created 08-15-2019 01:46 AM
i have same issue today after upgrade ambari for 3.1 the postgresql service is not starting / any idea .
Created 08-18-2019 09:42 PM
Hi @rushi_ns ,
yours might be completly different issue.
Please create a new Question thread stating your issue.