influxdb-1.7.2.x86_64安装 install influxdb-1.7.2.x86_64 on RedHat & CentOS

1.下载安装

wget http://dl.influxdata.com/influxdb/releases/influxdb-1.7.2.x86_64.rpm
https://portal.influxdata.com/downloads 
官方提供的下载是https改成http后下载

sudo yum localinstall influxdb-1.7.2.x86_64.rpm

2.启动运行

influxd -config /etc/influxdb/influxdb.conf

3.安装数据管理工具chronograf

从1.3版本开始不再集成web ui的管理界面。可用用chronograf或者InfluxDBStudio来管理数据库

https://github.com/CymaticLabs/InfluxDBStudio

https://docs.influxdata.com/influxdb/v1.5/tools/web_admin/

chronograf window版本
https://dl.influxdata.com/chronograf/releases/chronograf-1.7.5_windows_amd64.zip
unzip chronograf-1.7.5_windows_amd64.zip

4. chronograf连接数据库

linux 版本 RedHat & CentOS

wget https://dl.influxdata.com/chronograf/releases/chronograf-1.7.5.x86_64.rpm
sudo yum localinstall chronograf-1.7.5.x86_64.rpm

192.168.1.71:8888

第一次登录要求设置管理员密码

原文地址:https://www.cnblogs.com/cs294639693/p/10203349.html

时间: 2024-08-03 22:44:03

influxdb-1.7.2.x86_64安装 install influxdb-1.7.2.x86_64 on RedHat & CentOS的相关文章

grafana安装配置 influxdb安装配置

grafana安装配置.txt 安装https://grafana.com/grafana/downloadwget https://s3-us-west-2.amazonaws.com/grafana-releases/release/grafana-4.2.0-1.x86_64.rpm yum localinstall grafana-4.2.0-1.x86_64.rpm cli influx -host '192.168.100.74' -port '8086' -username 'us

centos7 下手动安装MySQL-5.6.32-1.linux_glibc2.5.x86_64.rpm-bundle

由于centos7默认不再是mysql数据库,所以度算手动安装一个. 全程参考http://www.2cto.com/database/201501/371451.html 这里摘抄以下这个链接的内容,并根据自己的实际安装情况进行一些补充. 选择下载MySQL Community Server (GPL)版本,由于MySQL Community Server 5.7.14没有rpm格式文件下载,这里我们选择5.6.32版本的rpm格式文件下载. 下载得到MySQL-5.6.32-1.linux_

redhat6.4安装MySQL-server-5.5.28-1.linux2.6.x86_64.rpm

首先下载下面三个文件: MySQL-server-5.5.28-1.linux2.6.x86_64.rpm MySQL-client-5.5.28-1.linux2.6.x86_64.rpm MySQL-devel-5.5.28-1.linux2.6.x86_64.rpm 然后使用root账号登陆,进行安装: 1. 安装server.devel.client:1. 安装server.devel.client: rpm -ivh --replacefiles MySQL-s*.rpm rpm -i

centos6 yum 安装 install c++4.8 gcc4.8

cd /etc/yum.repos.d wget http://people.centos.org/tru/devtools-1.1/devtools-1.1.repo yum --enablerepo=testing-1.1-devtools-6 install devtoolset-1.1-gcc devtoolset-1.1-gcc-c++ This will install it most likely into /opt/centos/devtoolset-1.1/root/usr/b

sublime Text3下载与安装以及解决安装Install Package时遇见的问题

最近下载安装sublime Text3后,在安装Install Package时遇到了几个问题,网上搜了一大圈终于解决了,特此记录为以后之便. 一.下载安装sublime Text3 1.sublime Text3下载 官网地址:https://www.sublimetext.com/3 打开链接,选择对应系统的版本下载即可.(本人电脑是wi10 64位,下载Windows 64 bit ) 2.sublime Text3安装 (1)下载Windows 64 bit后,双击即可安装.(注意勾选A

在RedHat/CentOS下安装Docker(不升级内核)

背景 由于内核版本问题,最初仅Ubuntu可以较好的支持Docker.不过,由于RedHat系列OS(REHL.CentOS)是目前主流的Linux服务器操作系统,所以令RedHat系列OS支持Docker很有必要.目前Docker和RedHat已经展开深入合作,并在2013年年底推出了可以在RedHat系列OS上运行的Docker0.7. 目前有一些博客介绍了如何在CentOS上安装Docker,例如http://www.linuxidc.com/Linux/2014-01/95512.htm

使用rpm命令从redhat/centos系统盘安装计划任务程序crontab

一.准备文件 将光盘centos/redhat放入光驱,进入Packages目录,或者将以下文件复制到要安装的系统中: (1/5): cronie-1.4.4-15.el6.x86_64.rpm (2/5): cronie-anacron-1.4.4-15.el6.x86_64.rpm (3/5): crontabs-1.10-33.el6.noarch.rpm (4/5): procmail-3.22-25.1.el6_5.1.x86_64.rpm (5/5): sendmail-8.14.4

Install Oracle 11G Release 2 (11.2) on Centos Linux 7

Install Oracle 11G Release 2 (11.2) on Centos Linux 7 This article presents how to install Oracle 11G on Centos Linux 7. Read following article how to install Centos Linux 7: Install Centos Linux 7 (for comfort set 2G memory for your virtual machine

redhat centos 软件安装 卸载 区别

redhat centos 软件安装 一.安装方式: 1.源码安装:(源码建议放在/usr/local/src,如:/usr/local/src/php7) (1)配置:./configure:./configure --prefix=绝对路径(需在源码目录中执行. 指定安装位置,  如:./configure --prefix=/usr/local/php7) (2)编译:make (3)安装: make install (4)启动服务:查看源码目录中的 INSTALL 文件,可知启动命令 (