RabbitMQ-ஐ பாதுகாப்பாக வைப்பது authentication, authorization (permissions, vhosts), encryption (TLS), மற்றும் network security — broker மற்றும் அது கையாளும் messages-ஐ பாதுகாப்பது. Production deployments-க்கு RabbitMQ security புரிந்துகொள்வது முக்கியம்.
Authentication மற்றும் authorization
✓ AUTHENTICATION → require credentials (users/passwords); don't use the default guest
account in production (it's restricted to localhost by default — and should be removed/changed)
✓ AUTHORIZATION → grant users PERMISSIONS (configure/write/read) per VHOST → least privilege
(users access only what they need)
✓ VHOSTS → isolate applications/tenants; scope permissions per vhost
✓ Consider external auth (LDAP, OAuth) for enterprise
