[下載influxdb](https://dl.influxdata.com/influxdb/releases/influxdb-1.7.0_windows_amd64.zip)
2.1、解壓到D:\tools\common_tools\influxdb-1.7.0-1
2.2、命令行進(jìn)入D:\tools\common_tools\influxdb-1.7.0-1
2.3、執(zhí)行命令啟動數(shù)據(jù)庫 influxd
2.4、客戶端連接數(shù)據(jù)庫
命令行進(jìn)入D:\tools\common_tools\influxdb-1.7.0-1執(zhí)行influx -host localhost -port 8086命令
3.1、[下載influxDB Studio](https://pan.baidu.com/s/1GEaAhoS49-Ogyx-CBPVEbA) 驗證碼:8w8u
3.2新建連接,用戶名與密碼都是root
官網(wǎng)地址:https://portal.influxdata.com/downloads/
點擊上圖的 “v1.7.8” 發(fā)現(xiàn)不起作用,其實真正的下載鏈接就在頁面中。?
成都創(chuàng)新互聯(lián)是專業(yè)的銅官網(wǎng)站建設(shè)公司,銅官接單;提供網(wǎng)站制作、成都網(wǎng)站制作,網(wǎng)頁設(shè)計,網(wǎng)站設(shè)計,建網(wǎng)站,PHP網(wǎng)站建設(shè)等專業(yè)做網(wǎng)站服務(wù);采用PHP框架,可快速的進(jìn)行銅官網(wǎng)站開發(fā)網(wǎng)頁制作和功能擴(kuò)展;專業(yè)做搜索引擎喜愛的網(wǎng)站,專業(yè)的做網(wǎng)站團(tuán)隊,希望更多企業(yè)前來合作!
右鍵點擊鼠標(biāo),審查元素,搜索release,找到下圖的鏈接:
https://dl.influxdata.com/influxdb/releases/influxdb-1.7.8.x86_64.rpm
把鏈接復(fù)制下來,拷貝到瀏覽器中即可下載。
rpm -ivh --prefix=/app/influxdb-1.7.8/ influxdb-1.7.8.x86_64.rpm
cd /app/influxdb-1.7.8/var/lib/influxdb
mkdir meta,data,wal
chmod -R 777 /app/influxdb-1.7.8/var/lib/influxdb/data
主要修改meta,data,wal存放位置及端口
cd /app/influxdb-1.7.8/usr/bin
influx -port 18086
show databases;
use database1;
show measurements;
show users;
cd /app/influxdb-1.7.8/usr/bin修改influxdb.conf文件
influxd backup -portable -database gefs_v1_0 -host 127.0.0.1:18088 /t2019/snapshot
scp /t2019/snapshot root@47.106.109.58:/app/backup
influxd restore -portable -database gefs_v1_0 /app/backup
influxDB中的名詞 | MySQL中的概念 |
---|---|
database | 數(shù)據(jù)庫 |
measurement | 數(shù)據(jù)表 |
point | 行數(shù)據(jù) |
Point屬性 | MySql中的概念 |
---|---|
time | 每個數(shù)據(jù)記錄時間,是數(shù)據(jù)庫中的主索引(會自動生成) |
fields | 各種記錄值(沒有索引的屬性) |
tags | 各種有索引的屬性 |