Ubuntu – Unable to run ubuntu sdk cannot access lxd server

lxdsoftware installationubuntu-sdk

I have installed ubuntu-sdk and i am trying to run it but it says "The current user can not access the LXD server which is required for the Ubuntu SDK.
Make sure the user is part of the lxd group and restart the IDE.",why i cannot access lxd server.

Best Answer

You need to add your user to the lxd group. The simplest way to this is the following: sudo usermod -a -G lxd `whoami`

You will then need to log out and log back in again in order for the groups to be updated.

Related Question