You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Does anybody has this kind of problem that was unable to start service or connect to Web API?
After struggling with this for dozen of hours I finally got what the problem was - you need to check whether %AppData% (type it in CMD) does not contain latin characters (different than english ones). If so you need to change paths to those that do not cover this characters. To do so:
for example wrong Homepath: C:\User\Tłóść\RabbitMQ
has to be switched to, for example: C\RabbitMQ\Data
To do so:
Run in RabbitMQ command line:
rabbitmq-service.bat remove
set RABBITMQ_BASE=C\RabbitMQ\Data
rabbitmq-service.bat install
Add following line to files: rabbitmq-service.bat or rabbitmq-server.bat:
SET HOMEPATH=\RabbitMQ\Data
Enable management plugin (in RabbitMQ CMD):
rabbitmq-plugins enable rabbitmq_management
Go in your web browser to: localhost:15672 -> should work!
It would be great if this issue can be solved in next releses because it is huge problem to find out why exception occures and how to handle it
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Does anybody has this kind of problem that was unable to start service or connect to Web API?
After struggling with this for dozen of hours I finally got what the problem was - you need to check whether %AppData% (type it in CMD) does not contain latin characters (different than english ones). If so you need to change paths to those that do not cover this characters. To do so:
for example wrong Homepath: C:\User\Tłóść\RabbitMQ
has to be switched to, for example: C\RabbitMQ\Data
To do so:
Add following line to files: rabbitmq-service.bat or rabbitmq-server.bat:
SET HOMEPATH=\RabbitMQ\Data
Enable management plugin (in RabbitMQ CMD):
rabbitmq-plugins enable rabbitmq_management
Go in your web browser to: localhost:15672 -> should work!
It would be great if this issue can be solved in next releses because it is huge problem to find out why exception occures and how to handle it
Beta Was this translation helpful? Give feedback.
All reactions