I have created user in PostgreSQL database that don't have password.
When I tried to connect to same user in pgAdmin3 it asks for password for the user every time I want to connect to server.
what i did was following:sudo vi /etc/postgresql/10.2/main/pg_hba.conf # Add following lines above first uncommented line # Allow user login without password # TYPE DATABASE USER ADDRESS METHOD local all user trust # Save file and restart Postgresql sudo service postgresql restart
How to access database for user without password in pgAdmin3? What are the config changes required in pgAdmin3?