Click here to Skip to main content
15,891,184 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
FATAL: 28000: no pg_hba.conf entry for host "xxxx", user "xxxx", database "xxxx", SSL off

What I have tried:

i have changes in web.config wrote exact db name and username
Posted
Updated 30-Jun-19 22:38pm
v2
Comments
Maciej Los 1-Jul-19 4:15am    
We aren't psychics, we can't read in your mind or direct from your screen. You should provide more details about postgresql server configuration, especially about pg_hba.conf content.
Sohan Yadav 1-Jul-19 4:29am    
i have posted entire error message

1 solution

Quote:
i have posted entire error message

No, though that's useful, it tells us nothing that lets us answer your problem.

Remember that we can't see your screen, access your HDD, or read your mind - we only get exactly what you type to work with.
And we have no access to your code, your config file, or your DB - so we can't tell at all what exactly is going on, and you need that to work out what the problem might be.

So, it's going to be up to you.
Fortunately, you have a tool available to you which will help you find out what is going on: the debugger. If you don't know how to use it then a quick Google for "Visual Studio debugger" should give you the info you need.

Put a breakpoint on the first line in the function, and run your code through the debugger. Then look at your code, and at your data and work out what should happen manually. Then single step each line checking that what you expected to happen is exactly what did. When it isn't, that's when you have a problem, and you can back-track (or run it again and look more closely) to find out why.

Sorry, but we can't do that for you - time for you to learn a new (and very, very useful) skill: debugging!
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900