The Redis third-party authentication module
Go to file
2023-05-28 23:29:05 +08:00
src 禁止default用户登录 2023-05-28 22:42:08 +08:00
.clang-format 支持在初始化时添加用户 2023-05-28 00:27:43 +08:00
.drone.yml support drone ci 2022-05-08 20:25:47 +08:00
.gitignore init project 2022-05-08 20:20:16 +08:00
LICENSE Initial commit 2022-05-08 09:52:17 +00:00
Makefile init project 2022-05-08 20:20:16 +08:00
README.md update readme 2023-05-28 23:29:05 +08:00

The Redis third-party authentication module has the following issues due to the fact that open-source Redis authentication reads authentication information from files:

  • From a security perspective, saving passwords in configuration files is not secure and cannot meet enterprise level security requirements.
  • When in cluster mode, the permission information in each instance is separate and it is not easy to maintain consistency.

Roadmap

  • Support synchronizing user permission information from the postgreSQL database.
  • Support synchronizing permission information from HTTP requests.

Link

  • Redis: Redis is an in-memory database that persists on disk.
  • libpqxx: The C++ API to the PostgreSQL database management system.