Reputation: 75
I have a windows server with installed postgresql. I would like to enable passwordcheck extension but is not present and do not know where to find it. Can someone help me? Thanks so much
Upvotes: 0
Views: 451
Reputation: 246483
It should be installed (look for passwordcheck.dll
in the lib
directory), but you need to enable it by adding it to shared_preload_libraries
in postgresql.conf
and restarting the database server.
Just follow the documentation.
Upvotes: 2