bareboat-necessities / lysmarine_gen

With BBN OS you can build a central boat computer. BBN OS is free and open source. It is based on commonly used community supported open source projects such as SignalK, PyPilot, OpenCPN, and others. BBN OS graphical user interface will let you build a cockpit front-end to all functionality of the OS from chartplotting, dashboards, weather, etc.
https://github.com/bareboat-necessities/lysmarine_gen
255 stars 58 forks source link

influxDB error 404 with fresh lysmarine-bbn-bullseye_2023-08-17 install #381

Closed gildas-declercq closed 8 months ago

gildas-declercq commented 9 months ago

Hi,

I had see issue. as it was with an install on wich I did some updates , I did a fresh install. signalk is ok, I just have a usb mouse GPS, data are ok and a can hat , and I have the data ok from nmea2K. I did sudo systemctl unmask influxdb.service sudo systemctl enable influxdb sudo systemctl start influxdb

as per documentation. but cant get anything on http://localhost:8086/ except a 404 error.

what did I do wrong ? thanks a lot Gildas

mgrouch commented 9 months ago

Yes, that’s right, on port 8086 you will see a 404 page. The browser will complain: “This site could not be reached” if the database is not found.

mgrouch commented 9 months ago

and that port is without UI. it's API port. UI for influxDb is Chronograf.

https://docs.influxdata.com/chronograf/v1/

mgrouch commented 9 months ago
sudo systemctl enable chronograf
sudo systemctl start chronograf

And open browser http://localhost:8888/

Start kapacitor

sudo systemctl enable kapacitor
sudo systemctl start kapacitor

Create connection to it in Chronograf.

gildas-declercq commented 9 months ago

ok got it thanks a lot by the way there is a mistype in https://bareboat-necessities.github.io/my-bareboat/bareboat-os.html#_influxdb "kapasitor" instead of "kapacitor"

regards