Rate This Document
Findability
Accuracy
Completeness
Readability

Running InfluxDB Installed Using Source Code

  1. Start InfluxDB.
    1
    2
    cd /opt/db/influxdb
    nohup ./influxd &
    

    Or

    1
    ./influxd
    
  2. Check the process.
    1
    ps -ef | grep influx
    
  3. Query the port.
    1
    netstat -anpt | grep 8086
    

    Stop InfluxDB.

    1
    2
    ps -ef | grep influx
    kill -9 PID
    

    Or

    1
    pkill influx