Tôi nhận được dưới đây ngoại lệ
org.springframework.amqp.AmqpAuthenticationException: com.rabbitmq.client.AuthenticationFailureException: ACCESS_REFUSED - Đăng nhập bị từ chối sử dụng cơ chế xác thực PLAIN. Để biết chi tiết, hãy xem logfile của nhà môi giới.
Cấu hình: RabbitMQ 3.3.5 trên Windows
Trên tệp Cấu hình trong, %APPDATA%\RabbitMQ\rabbit.config
tôi đã thực hiện thay đổi bên dưới theo https://www.rabbitmq.com/access-control.html
[{rabbit, [{loopback_users, []}]}].
Tôi cũng đã thử tạo người dùng / pwd - kiểm tra / thử nghiệm dường như không làm cho nó hoạt động.
Đã thử các bước từ bài đăng này .
Các chi tiết cấu hình khác như sau:
Bối cảnh ứng dụng mùa xuân được lưu trữ trên Tomcat:
<!-- Rabbit MQ configuration Start -->
<!-- Connection Factory -->
<rabbit:connection-factory id="rabbitConnFactory" virtual-host="/" username="guest" password="guest" port="5672"/>
<!-- Spring AMQP Template -->
<rabbit:template id="rabbitTemplate" connection-factory="rabbitConnFactory" routing-key="ecl.down.queue" queue="ecl.down.queue" />
<!-- Spring AMQP Admin -->
<rabbit:admin id="admin" connection-factory="rabbitConnFactory"/>
<rabbit:queue id="ecl.down.queue" name="ecl.down.queue" />
<rabbit:direct-exchange name="ecl.down.exchange">
<rabbit:bindings>
<rabbit:binding key="ecl.down.key" queue="ecl.down.queue"/>
</rabbit:bindings>
</rabbit:direct-exchange>
Trong lớp điều khiển của tôi
@Autowired
RmqMessageSender rmqMessageSender;
//Inside a method
rmqMessageSender.submitToECLDown(orderInSession.getOrderNo());
Trong Người gửi tin nhắn của tôi:
import org.springframework.amqp.core.AmqpTemplate;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
@Component("messageSender")
public class RmqMessageSender {
@Autowired
AmqpTemplate rabbitTemplate;
public void submitToRMQ(String orderId){
try{
rabbitTemplate.convertAndSend("Hello World");
} catch (Exception e){
LOGGER.error(e.getMessage());
}
}
}
Khối trên ngoại lệ đưa ra bên dưới Ngoại lệ
org.springframework.amqp.AmqpAuthenticationException: com.rabbitmq.client.AuthenticationFailureException: ACCESS_REFUSED - Đăng nhập bị từ chối sử dụng cơ chế xác thực PLAIN. Để biết chi tiết, hãy xem logfile của nhà môi giới.
Nhật ký lỗi
=ERROR REPORT==== 7-Nov-2014::18:04:37 ===
closing AMQP connection <0.489.0> (10.1.XX.2XX:52298 -> 10.1.XX.2XX:5672):
{handshake_error,starting,0,
{amqp_error,access_refused,
"PLAIN login refused: user 'guest' can only connect via localhost",
'connection.start_ok'}}
Xin vui lòng tìm thấy bên dưới mục nhập pom.xml
<dependency>
<groupId>org.springframework.amqp</groupId>
<artifactId>spring-rabbit</artifactId>
<version>1.3.6.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework.integration</groupId>
<artifactId>spring-integration-amqp</artifactId>
<version>4.0.4.RELEASE</version>
</dependency>
Vui lòng cho tôi biết nếu bạn có bất kỳ suy nghĩ / đề xuất nào