Thursday, October 31, 2024

Keycloak authentication error - Account is not fully set up

 After creating a user a given all permissions and roles, I am facing the following problem with a client:

{
    "error": "invalid_grant",
    "error_description": "Account is not fully set up"
}

I am using 26.0.4 Keycloak version, so I decided to create a new user this time with name and password and Email approved in on status, now I can log in without problems.

Best Regards,

Saturday, October 19, 2024

Redis Template connection problem

 If you are connecting Redis with Spring for the first time you problably need set a parameter to connect:

> CONFIG SET protected-mode no

Friday, October 18, 2024

After install docker, problems with running

 You may need after installing docker execute permissions to all users that execute docker, the commands are:

  • $ sudo usermod -aG docker $USER
  • $ sudo systemctl restart docker
  • (close terminal or restart machine)


Then docker will run without using sudo.

Problems with Virtualbox Guest Additions

Before installing Virtual Box Guest Additions you may need install some software to not having problems with screen or resolution or even worst kernel damage, the commands are the following:

  • $ sudo apt-get update
  • $ sudo apt-get install build-essential dkms
  • $ sudo apt-get install linux-headers-$(uname -r)
Best Regards,