Skip to content

Commit b279ea7

Browse files
authored
Create Rabbit mq installations
1 parent 7364742 commit b279ea7

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

Rabbit mq installations

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
Install RabbitMQ on windows:
2+
3+
1. Download RabbitMQ:
4+
https://www.rabbitmq.com/install-windows.html
5+
6+
2. Download and install Erlang:
7+
http://www.erlang.org/downloads
8+
9+
select the link: "OTP 20.3 Windows 64-bit Binary File (99142192)"
10+
11+
3. Install the Server:
12+
Run the RabbitMQ installer, rabbitmq-server-3.7.5.exe. It installs RabbitMQ as a Windows service and
13+
starts it using the default configuration.
14+
15+
4. Run RabbitMQ Service:
16+
The service will run fine using its default settings. The RabbitMQ service starts automatically. You can
17+
stop/reinstall/start the RabbitMQ service from the Start Menu.
18+
19+
5. Maven Dependency:
20+
21+
<dependency>
22+
<groupId>org.springframework.boot</groupId>
23+
<artifactId>spring-boot-starter-amqp</artifactId>
24+
</dependency>
25+
26+
6. Following to be added in application.properties of spring boot:
27+
28+
spring.rabbitmq.host = 127.0.0.1
29+
spring.rabbitmq.port = 5672

0 commit comments

Comments
 (0)