我无法启动InfluxDB服务器。

huangapple go评论63阅读模式
英文:

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已经在运行,所以请检查是否是这种情况。

如果不是的话,你可以:

  1. 使用 netstat 命令检查哪个进程占用了端口8088
  2. 配置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:

  1. Check which process is holding port 8088 using netstat command
  2. Configure InfluxDB to use the different port

More information: JMeter + Grafana: How to Use Grafana to Monitor JMeter

huangapple
  • 本文由 发表于 2023年6月25日 22:59:23
  • 转载请务必保留本文链接:https://go.coder-hub.com/76551034.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定