Skip to content

mks786/ElasticSearch-and-RabbitMQ-Sample

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ElasticSearch-and-RabbitMQ-Sample

Reposistory having samples of the Rabbit Messeging Queue and Elastic Search. Below is the core logic for the project uploaded.

RabbitMQ

Download the following to Proceed with RabbitMQ:

Download and install ERLANG Latest version,

Download and install RabbitMQ Latest Version

Default port for the RabbitMQ:

http://localhost:15672/

Default Username and Password: guest

Some useful commands just for startups.

  1. To Enable Management
rabbitmq-plugins enable rabbitmq_management
  1. Start Server
rabbitmqctl stop_app
  1. Stop Server
rabbitmqctl start_app
  1. Reset Server
//warning this is resetting all the queues reset all so becareful about it
rabbitmqctl reset
  1. Create New User
rabbitmqctl add_user [UserName] [Password]
rabbitmqctl add_user Kashif Kashif
  1. Tags Assign
rabbitmqctrl set_user_tags [UserName] [Role>> Administrator etc]
rabbitmqctrl set_user_tags Kashif administrator
  1. Setting permissions
// ".*"=> means all the permissions
rabbitmqctl set_permissions -p / [UserName] [Read] [Write] [View]
rabbitmqctl set_permissions -p / Kashif ".*" ".*" ".*"

Elasticsearch

Download Elasticsearch in your system

Download the following from there

  1. Elasticsearch
  2. Kibana

About

Sample code related to Rabbit MQ & Elastic Search using C#

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages