ConsulManager/docs/FAQ.md

14 lines
330 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

### 查后端实时日志先进入docker-compose.yml所在目录
```
docker-compose logs --tail=10 -f flask-consul
```
### 查前端实时日志先进入docker-compose.yml所在目录
```
docker-compose logs --tail=10 -f flask-vue
```
### 检查consul连接是否正常
```
进入容器,执行:
nc -vz {ip} 8500
```