Connection refused: no further information: /172.16.0.79:9848
时间: 2023-11-06 07:00:54 浏览: 147
Explanation: The Web server refused the connection.
Connection refused: no further information: /172.16.0.79:9848这个错误提示表明连接被拒绝,但没有提供更多的信息。根据你提供的引用内容,我可以提供以下解决方案:
1. 确保服务器的nacos端口已正确暴露,可以通过运行以下命令来检查端口是否正确暴露:
```
docker run -it -d --name nacos-smile -e MODE=standalone -v /home/smile/docker/nacos:/nacos --restart=always -p 8848:8848 -p 9848:9848 nacos/nacos-server:latest
```
确保在运行命令时,将9848端口正确映射到服务器上。
2. 检查服务器的防火墙设置,确保该端口没有被阻止。你可以暂时关闭防火墙来测试连接,如果能成功连接,那么你可以添加相应的防火墙规则来允许该端口。
3. 确保你的模块依赖中包含了nacos-client的低版本依赖。在pom.xml中添加以下依赖:
```
<dependency>
<groupId>com.alibaba.nacos</groupId>
<artifactId>nacos-client</artifactId>
<version>1.4.2</version>
</dependency>
```
这样可以确保你的模块与服务器上的nacos版本兼容。
阅读全文