Running InfluxDB Installed Using Source Code
- Start InfluxDB.
1 2
cd /opt/db/influxdb nohup ./influxd &
Or
1./influxd
- Check the process.
1ps -ef | grep influx
- Query the port.
1netstat -anpt | grep 8086
Stop InfluxDB.
1 2
ps -ef | grep influx kill -9 PID
Or
1pkill influx
Parent topic: Running InfluxDB