Jeremy Zheng cbef1e89e3 :bug: fix rabbitmq management plugin пре 4 година
..
documents 86a723a44d :wrench: add es & redis cluster support пре 4 година
.gitignore 41b527db9b :hammer: add docker support пре 4 година
README.md cbef1e89e3 :bug: fix rabbitmq management plugin пре 4 година
first.sh cbef1e89e3 :bug: fix rabbitmq management plugin пре 4 година
next.sh 86a723a44d :wrench: add es & redis cluster support пре 4 година
redis.sh 86a723a44d :wrench: add es & redis cluster support пре 4 година

README.md

Usage for Ubuntu 20.10 and newer

  • Install podman: sudo apt -y install podman runc buildah skopeo.
  • Setup /etc/containers/registries.conf.

    [registries.search]
    registries = ['quay.io', 'docker.io']
    
  • Work with podman image

    # clear outdated images
    podman rmi -a -f
    # uncompress image files
    cat palm.tar.xz.a* | tar xj
    # import new podman image
    podman load -q -i mint-TIMESTAMP.tar  
    
  • Enjoy it!

    # for the first time start
    ./docker/ubuntu/first.sh
    # fot the next time start
    ./docker/ubuntu/next.sh
      
    # start servers
    > sudo supervisord -c /etc/supervisor/supervisord.conf
    
    # enable rabbitmq Management Plugin 
    > sudo rabbitmq-plugins enable rabbitmq_management
    
    # enable redis clusters
    > ./docker/redis.sh
    

start

  • RabbitMQ: http://localhost:15672, user guest, password guest
  • Redis cluster ports 6371~6376
  • Minio server: http://localhost:9001 user admin, password 12345678
  • PostgreSql: psql -U postgres -h 127.0.0.1 -p 5432
  • ElasticSearch: curl http://127.0.0.1:9200/

  • For VSCode Run in your local host

    sudo apt install yarnpkg golang-go