Hi, I have a Raspebrry Pi 4B in a Geekworm case, using a Kingston SSD for boot and storage. I flashed the SSD with the latest Raspberry Pi OS (64bit). Once booted up, I SSHd through and used the commands from Downloads (influxdata.com) to install Influxdb2. The commands I used were:
wget -q https://repos.influxdata.com/influxdata-archive_compat.key
echo '393e8779c89ac8d958f81f942f9ad7fb82a25e133faddaf92e15b16e6ac9ce4c influxdata-archive_compat.key' | sha256sum -c && cat influxdata-archive_compat.key | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/influxdata-archive_compat.gpg > /dev/null
echo 'deb [signed-by=/etc/apt/trusted.gpg.d/influxdata-archive_compat.gpg] https://repos.influxdata.com/debian stable main' | sudo tee /etc/apt/sources.list.d/influxdata.list
sudo apt-get update && sudo apt-get install influxdb2
sudo systemctl unmask influxdb.service
sudo systemctl start influxdb
I then rebooted the Pi, SSHd back in and ran
sudo service influxdb status
which returned
influxdb.service - InfluxDB is an open-source, distributed, time series database
Loaded: loaded (/lib/systemd/system/influxdb.service; enabled; vendor preset: enabled)
Active: active (running) since Fri 2023-09-08 10:49:30 BST; 11s ago
Docs: https://docs.influxdata.com/influxdb/
Process: 7082 ExecStart=/usr/lib/influxdb/scripts/influxd-systemd-start.sh (code=exited, status=0/SUCCESS)
Main PID: 7083 (influxd)
Tasks: 9 (limit: 8754)
CPU: 1.320s
CGroup: /system.slice/influxdb.service
└─7083 /usr/bin/influxd
Sep 08 10:49:29 pi-server influxd-systemd-start.sh[7083]: ts=2023-09-08T09:49:29.595195Z lvl=info msg="Open store (star>
Sep 08 10:49:29 pi-server influxd-systemd-start.sh[7083]: ts=2023-09-08T09:49:29.595362Z lvl=info msg="Open store (end)>
Sep 08 10:49:29 pi-server influxd-systemd-start.sh[7083]: ts=2023-09-08T09:49:29.595443Z lvl=info msg="Starting retenti>
Sep 08 10:49:29 pi-server influxd-systemd-start.sh[7083]: ts=2023-09-08T09:49:29.595478Z lvl=info msg="Starting precrea>
Sep 08 10:49:29 pi-server influxd-systemd-start.sh[7083]: ts=2023-09-08T09:49:29.597763Z lvl=info msg="Starting query c>
Sep 08 10:49:29 pi-server influxd-systemd-start.sh[7083]: ts=2023-09-08T09:49:29.606146Z lvl=info msg="Configuring Infl>
Sep 08 10:49:29 pi-server influxd-systemd-start.sh[7083]: ts=2023-09-08T09:49:29.622726Z lvl=info msg=Starting log_id=0>
Sep 08 10:49:29 pi-server influxd-systemd-start.sh[7083]: ts=2023-09-08T09:49:29.623439Z lvl=info msg=Listening log_id=>
Sep 08 10:49:30 pi-server influxd-systemd-start.sh[7082]: InfluxDB started
Sep 08 10:49:30 pi-server systemd[1]: Started InfluxDB is an open-source, distributed, time series database.
I then went to http:IP_ADDRESS:8086 and started the onboarding process but cannot create the initial admin user
I’ve followed this process twice, with the same result. What am I doing wrong?