guangxuCheng commented on a change in pull request #35: URL: https://github.com/apache/incubator-tubemq-website/pull/35#discussion_r436444695
########## File path: docs/en-us/quick_start.md ########## @@ -33,23 +45,32 @@ If you want to use local `protoc` executable, you can change the configuration o </configuration> ``` -## Deploy -After the build, please go to `tubemq-server/target`. You can find the -**tubemq-server-x.x.x-bin.tar.gz** file. It is the server deployment package, which includes -scripts, configuration files, dependency jars and web GUI code. +## Deploy and Start +### Deploy TubeMQ Standalone +Standalone mode starts zookeeper/master/broker services in one docker container: +``` +docker run -p 8080:8080 -p 8000:8000 --name tubemq -d apachetubemq/tubemq-all:latest +``` +Afater container is running, you can access ` http://127.0.0.1:8080`, and reference to next `Quick Start` chapter for experience. -For the first time deployment, we just need to extract the package file. For example, we put these -files into the `/opt/tubemq-server`, here's the folder structure. +**Tips**:Standalone Mode is only available for development and experience, it's not designed for production environment. + +### Deploy TubeMQ Cluster +#### Prerequisites +- ZooKeeper Cluster +- [tubemq-server-[TUBEMQ-VERSION]-bin.tar.gz](download/download.md) package file Review comment: Still discussing how to add a download page, so this link may be wrong ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
