How to quickly install and start Kafka

317 Uncategorized Leave a Comment
Install and start Kafka is quite simple even on you local computer. Maybe you are thinking it must need lots of dependencies, but the fact is, it only needs Java. No database, no complicate configuration are needed, so you also no need to install Docker to run it. How to install and start Kafka Following are so…

Quick start docker containers in one command

464 记录 Leave a Comment
If you want start container as daemon, just add argument -d to the command If you want the container has a name, add argument --name <Container Name> MySQL Quick start MySQL from Docker, ~ docker run --rm -p 3306:3306 -e MYSQL_ROOT_PASSWORD=12345678 mysql The login info will be username: root password: 1…