Open
Description
Search before creation
- I had searched in the issues and found no similar issues.
Documentation Related
Document Navigation
Quick Start > Run RocketMQ in Docker > 4. Start Broker and Proxy > Windows
Error Output while Startup:
Suggestion
Replace with the startup command as shown below
# Configure the broker's IP address
echo "brokerIP1=127.0.0.1" > broker.conf
# Start the Broker and Proxy
docker run -d ^
--name rmqbroker ^
--net rocketmq ^
-p 10912:10912 -p 10911:10911 -p 10909:10909 ^
-p 8080:8080 -p 8081:8081 ^
-e "NAMESRV_ADDR=rmqnamesrv:9876" ^
-v %cd%\broker.conf:/home/rocketmq/rocketmq-5.3.2/conf/broker.conf ^
apache/rocketmq:5.3.2 sh mqbroker --enable-proxy ^
-c /home/rocketmq/rocketmq-5.3.2/conf/broker.conf
# Verify if Broker started successfully
docker exec -it rmqbroker bash -c "tail -n 10 /home/rocketmq/logs/rocketmqlogs/proxy.log"
Are you willing to submit PR?
- Yes I am willing to submit a PR!