Encryption of config file does not work #9482
-
Hi, I am trying to encrypt the password that is needed for SSL connection in the advanced.config file (Windows server 2022). Currently I have this config: _[
]._ I have encoded my password with this command: rabbitmqctl encode 'k3y2wOz@nl' myPassphrase --cipher blowfish_cfb64 --hash sha256 --iterations 10000* When decrypting it via the command prompt it works, however when trying to run the RabbitMQ service it does not work, as the RabbitMQ service won't start. The erl_crash.dump shows: ({application_start_failure,rabbitmq_prelaunch,{{shutdown,{failed_to_start_child,prelaunch,{bad_config_entry_decoder,missing_passphrase}}},{rabbit_prelaunch_app,start,[normal,[]]}}}) Anybody any clues? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
is reported as the reason. Like in the doc examples. |
Beta Was this translation helpful? Give feedback.
is reported as the reason.
config_entry_encoder
is misplaced in your configuration file, it must not be underssl_opts
(but a sibling tolistener
, so, a top-level key) and it must not be under therabbitmq_management
app but underrabbit
.Like in the doc examples.