英文:
I am unable to start Influxdb server
问题
我无法启动InfluxDB服务器。InfluxDB服务器突然关闭或在完全启动之前波动。
尝试使用Windows PowerShell启动时显示以下错误:
>2023-06-25T13:51:17.278591Z 信息 InfluxDB正在启动 {"log_id": "0idi0X6l000", "version": "1.8.10", "branch": "1.8", "commit": "688e697c51fd"}
2023-06-25T13:51:17.278591Z 信息 Go运行时 {"log_id": "0idi0X6l000", "version": "go1.13.8", "maxprocs": 8}
run: open server: listen: listen tcp 127.0.0.1:8088: bind: 只有一个套接字地址(协议/网络地址/端口)通常是被允许的。
PS D:\InfluxData\influxdb-1.8.10-1>
英文:
I am unable to start InfluxDB server. InfluxDB server abruptly closes or fluctuates without fully starting.
While trying to start with Windows PowerShell it is showing the below error:
>2023-06-25T13:51:17.278591Z info InfluxDB starting {"log_id": "0idi0X6l000", "version": "1.8.10", "branch": "1.8", "commit": "688e697c51fd"}
2023-06-25T13:51:17.278591Z info Go runtime {"log_id": "0idi0X6l000", "version": "go1.13.8", "maxprocs": 8}
run: open server: listen: listen tcp 127.0.0.1:8088: bind: Only one usage of each socket address (protocol/network address/port) is normally permitted.
PS D:\InfluxData\influxdb-1.8.10-1>
答案1
得分: 0
这意味着端口8088被占用,InfluxDB无法使用它,因此出现故障。
可能是因为InfluxDB已经在运行,所以请检查是否是这种情况。
如果不是的话,你可以:
更多信息:JMeter + Grafana:如何使用Grafana监控JMeter
英文:
It means that port 8088 is busy and InfluxDB cannot use it hence it fails.
It might be the case InfluxDB is running already so check if this is the case.
If it's not you can:
- Check which process is holding port 8088 using netstat command
- Configure InfluxDB to use the different port
More information: JMeter + Grafana: How to Use Grafana to Monitor JMeter
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论