Influxdb explorer 1.8 no admin mode

Hi,

I’ve a docker instance of influxdb 3 and installed influxdb explorer 1.8 connected the server with a admin token. Connection is working.

When i open influxdb explorer i got only a limited options. (like view only mode)

Checked some support post and added the admin mode in command of docker compose : command: [“–mode=admin”].

When i re-run the container i can see in the logs : Running in admin mode , so it should be fine.

But i still only see the basic settings like the screenshot above.

Is it due to influxdb trial version? or any other idea, it’s driving me crazy.

Specifying --mode=admin in the Docker container should be all you need to do. One guess is that you’ve actually typed it wrong - your post has a single dash (–mode) instead of --mode.

Also make sure that once you’ve modified your flags for your container, that you’re actually fully removing the container and creating a new one instead of just restarting it. Restarting a container won’t respect any changes to flags you’ve made in your docker-compose.yml

Hi, Thanks @cbowden .

After several modification i’ve deleted the container and recreated from scratch using Influxdata documentation and it worked this time.

I’ve adapted the compose.yml and all is ok now.

Many thanks for the help.

Nicolas