Our Community is getting an upgrade! To get everything ready for the relaunch, we’ll be placing the site in read-only mode starting September 21st. We really appreciate your understanding while we get things set up behind the scenes. Catch up on all the exciting details about the move here. Need help or have questions? Drop us a line at [email protected]
Created on 06-13-201804:26 PM - edited 09-16-202201:43 AM
In DPS-1.1.0 we can't edit all the LDAP configuration properties after the initial setup. If we have to correct LDAP configs, you need to re-initialize the DPS setup to change it, which can be a painful task.
To avoid re-initializing the DPS setup, we can make the changes directly in the postgres database of dataplane.
Step1:- Find the container id of dp-database on DPS machine
docker ps
Step2: - connect to the docker machine
docker exec -it cf3f4a31e146 /bin/bash
Step3:- Login to the postgres database (dataplane)
su - postgres
psql -d dataplane
Take backup of the table,
create table dataplane.ldap_configs_bkp as select * from dataplane.ldap_configs;