如何在 Windows OS 上安装 influxdb 并访问管理控制台
How to install influxdb on Windows OS and access Admin Console
我是 influxdb
的新手,正在尝试将其安装到我的 Windows 7 - 64 OS.
以下是到目前为止完成的步骤:
- 已从以下位置下载 .zip 文件:
https://dl.influxdata.com/influxdb/releases/influxdb-1.1.0_windows_amd64.zip
- 将文件夹解压缩到以下位置:
J:\common\influxdb\influxdb-1.1.0_windows_amd64\influxdb-1.1.0-1
使用管理员权限启动命令提示符和运行以下命令:
1. cd J:\common\influxdb\influxdb-1.1.0_windows_amd64\influxdb-1.1.0-1
2. influxd.exe
命令提示符中的显示信息如下:
[run] 2016/11/15 14:52:21 InfluxDB starting, version 1.1.0, branch master, commit 800da5732b91c816b0a097acf8887fa2af1efa1a
[run] 2016/11/15 14:52:21 Go version go1.7.3, GOMAXPROCS set to 4
[run] 2016/11/15 14:52:21 no configuration provided, using default settings
[store] 2016/11/15 14:52:21 Using data dir: C:\Users\USER_HP_2013_03\.influxdb\d
ata
[subscriber] 2016/11/15 14:52:21 opened service
[monitor] 2016/11/15 14:52:21 Starting monitor system
[monitor] 2016/11/15 14:52:21 'build' registered for diagnostics monitoring
[monitor] 2016/11/15 14:52:21 'runtime' registered for diagnostics monitoring
[monitor] 2016/11/15 14:52:22 'network' registered for diagnostics monitoring
[monitor] 2016/11/15 14:52:22 'system' registered for diagnostics monitoring
[shard-precreation] 2016/11/15 14:52:22 Starting precreation service with check
interval of 10m0s, advance period of 30m0s
[snapshot] 2016/11/15 14:52:22 Starting snapshot service
[continuous_querier] 2016/11/15 14:52:22 Starting continuous query service
[httpd] 2016/11/15 14:52:22 Starting HTTP service
[httpd] 2016/11/15 14:52:22 Authentication enabled: false
[httpd] 2016/11/15 14:52:22 Listening on HTTP: [::]:8086
[retention] 2016/11/15 14:52:22 Starting retention policy enforcement service wi
th check interval of 30m0s
[run] 2016/11/15 14:52:22 Listening for signals
2016/11/15 14:52:22 Sending usage statistics to usage.influxdata.com
[monitor] 2016/11/15 14:52:22 Storing statistics in database '_internal' retenti
on policy 'monitor', at interval 10s
[shard] 2016/11/15 14:52:40 C:\Users\USER_HP_2013_03\.influxdb\data\_internal\mo
nitor database index loaded in 0s
问题:
当我尝试使用 http://localhost:8083 访问 admin console
时,得到 Firefox can’t establish a connection to the server at localhost:8083.
如果我尝试使用 http://localhost:8086 进行连接,则会得到 404 not found
.
帮助我访问 influxdb 的管理控制台。
添加了命令提示符屏幕截图:
编辑:
我尝试了以下链接中的步骤:
- How to install InfluxDB in Windows
[httpd] 2016/11/15 14:52:22 Listening on HTTP: [::]:8086
你应该使用 http://localhost:8086 URL,我不知道你从哪里得到这个 8083
。
您可能会发现 Taurus tool easier for use, apart from real-time results analysis it provides powerful Fass/Fail Criteria subsystem, Resource Monitoring 以及更多
查找 ..\influxdb-versiona.b.c.d\influxdb.conf
文件以启用 Admin
它是 HOCON 格式 查找 [admin]
部分。并取消注释
from # [admin] to admin
在HOCON格式中默认会被注释,“#”用于注释。
取消注释 binding address
和 enabled = false
Change the enabled from false to true.
运行以下命令
influxd -config influxdb.conf
使用 http://localhost:8083/
url.
访问管理界面
2020 年更新 - windows
不推荐使用 InfluxDB
翻了无数篇,一般是NOT recommended直接在Windows上安装InfluxDB。有很多问题。在性能和稳定性方面。官方 InfluxDB 也不支持 windows 并且将来也没有计划。这进一步证明了最新的 InfluxDB 2.0 不包含任何 windows 二进制文件。
InfluxDB 2.0 does not include windows binaries
所以?
变通? => WINDOWS 的 DOCKERS,试试吧,简单又免费
码头工人是免费的。如果您打算在 Windows Server 上安装 docker,Windows Server 2016 及更高版本也是免费的(Microsoft 与 docker 达成特殊协议,免费提供)
对于那些仍然在虚拟机世界中的人:
Dockers are NOT like Virtual Machines. It interacts directly with the host's file system via a windows service
查看下面的 link 以获得分步指南:
https://www.open-plant.com/knowledge-base/how-to-install-influxdb-docker-for-windows-10/
我是 influxdb
的新手,正在尝试将其安装到我的 Windows 7 - 64 OS.
以下是到目前为止完成的步骤:
- 已从以下位置下载 .zip 文件: https://dl.influxdata.com/influxdb/releases/influxdb-1.1.0_windows_amd64.zip
- 将文件夹解压缩到以下位置:
J:\common\influxdb\influxdb-1.1.0_windows_amd64\influxdb-1.1.0-1
使用管理员权限启动命令提示符和运行以下命令:
1. cd J:\common\influxdb\influxdb-1.1.0_windows_amd64\influxdb-1.1.0-1 2. influxd.exe
命令提示符中的显示信息如下:
[run] 2016/11/15 14:52:21 InfluxDB starting, version 1.1.0, branch master, commit 800da5732b91c816b0a097acf8887fa2af1efa1a
[run] 2016/11/15 14:52:21 Go version go1.7.3, GOMAXPROCS set to 4
[run] 2016/11/15 14:52:21 no configuration provided, using default settings
[store] 2016/11/15 14:52:21 Using data dir: C:\Users\USER_HP_2013_03\.influxdb\d
ata
[subscriber] 2016/11/15 14:52:21 opened service
[monitor] 2016/11/15 14:52:21 Starting monitor system
[monitor] 2016/11/15 14:52:21 'build' registered for diagnostics monitoring
[monitor] 2016/11/15 14:52:21 'runtime' registered for diagnostics monitoring
[monitor] 2016/11/15 14:52:22 'network' registered for diagnostics monitoring
[monitor] 2016/11/15 14:52:22 'system' registered for diagnostics monitoring
[shard-precreation] 2016/11/15 14:52:22 Starting precreation service with check
interval of 10m0s, advance period of 30m0s
[snapshot] 2016/11/15 14:52:22 Starting snapshot service
[continuous_querier] 2016/11/15 14:52:22 Starting continuous query service
[httpd] 2016/11/15 14:52:22 Starting HTTP service
[httpd] 2016/11/15 14:52:22 Authentication enabled: false
[httpd] 2016/11/15 14:52:22 Listening on HTTP: [::]:8086
[retention] 2016/11/15 14:52:22 Starting retention policy enforcement service wi
th check interval of 30m0s
[run] 2016/11/15 14:52:22 Listening for signals
2016/11/15 14:52:22 Sending usage statistics to usage.influxdata.com
[monitor] 2016/11/15 14:52:22 Storing statistics in database '_internal' retenti
on policy 'monitor', at interval 10s
[shard] 2016/11/15 14:52:40 C:\Users\USER_HP_2013_03\.influxdb\data\_internal\mo
nitor database index loaded in 0s
问题:
当我尝试使用 http://localhost:8083 访问 admin console
时,得到 Firefox can’t establish a connection to the server at localhost:8083.
如果我尝试使用 http://localhost:8086 进行连接,则会得到 404 not found
.
帮助我访问 influxdb 的管理控制台。
添加了命令提示符屏幕截图:
编辑: 我尝试了以下链接中的步骤:
- How to install InfluxDB in Windows
[httpd] 2016/11/15 14:52:22 Listening on HTTP: [::]:8086
你应该使用 http://localhost:8086 URL,我不知道你从哪里得到这个 8083
。
您可能会发现 Taurus tool easier for use, apart from real-time results analysis it provides powerful Fass/Fail Criteria subsystem, Resource Monitoring 以及更多
查找 ..\influxdb-versiona.b.c.d\influxdb.conf
文件以启用 Admin
它是 HOCON 格式 查找 [admin]
部分。并取消注释
from # [admin] to admin
在HOCON格式中默认会被注释,“#”用于注释。
取消注释 binding address
和 enabled = false
Change the enabled from false to true.
运行以下命令
influxd -config influxdb.conf
使用 http://localhost:8083/
url.
2020 年更新 - windows
不推荐使用 InfluxDB翻了无数篇,一般是NOT recommended直接在Windows上安装InfluxDB。有很多问题。在性能和稳定性方面。官方 InfluxDB 也不支持 windows 并且将来也没有计划。这进一步证明了最新的 InfluxDB 2.0 不包含任何 windows 二进制文件。
InfluxDB 2.0 does not include windows binaries
所以?
变通? => WINDOWS 的 DOCKERS,试试吧,简单又免费
码头工人是免费的。如果您打算在 Windows Server 上安装 docker,Windows Server 2016 及更高版本也是免费的(Microsoft 与 docker 达成特殊协议,免费提供)
对于那些仍然在虚拟机世界中的人:
Dockers are NOT like Virtual Machines. It interacts directly with the host's file system via a windows service
查看下面的 link 以获得分步指南:
https://www.open-plant.com/knowledge-base/how-to-install-influxdb-docker-for-windows-10/