While accesing postgres database i got an error saying
FATAL: Peer authentication failed for user "myuser"
to resolve this error i need to change the database owner like
ALTER DATABASE dbname OWNER TO 'all';
all is not a user in my system, but i want to make this database available to all the user in the system.
I am sure there is way to do stuff like this. can any one help me!