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.
Asked
Active
Viewed 2,124 times
1 Answers
1
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.

nicja
- 575
- 5
- 6
sudo apt-get install lxd
After that make sure LXD server is running:sudo service lxd start
Then you should be able to do asudo lxd init
the defaults should be fine for all the questions. Then you should be able to start ubuntu SDK IDE. – nicja Oct 14 '16 at 13:06