RadiantOne FID includes a powerful identity integration layer based on our patented identity virtualization technology, as well as HDAP, our big data-driven LDAP V3 directory store. RadiantOne FID is fast, flexible, and fundamental to ROI across any identity project, whether it’s providing SSO for SiteMinder or cloud federation, facilitating directory migration, enabling dynamic groups for applications like SharePoint, provisioning cloud directories, or getting more from Active Directory.
The docker exec command allows you to run commands inside a Docker container. The following command line will give you a bash shell inside your FID container:
$ docker exec -it myfid bash
The fid install log is available through Docker's container log:
When you start the image, you can pass one or more environment variables on docker run command. For example, you can pass the password for FID instance as FID_PASSWORD or the root user as FID_ROOT_USER.
The default user name and password -- cn=directory manager and secret1234
By default all container images are ephemeral, meaning when the container stops, the data is lost. If you need to persist the data, you need to use volumes.
If volumes are used, the installation and configuration are persisted. When the container is restarted with that volume, the existing installation is reused. You will have to delete the volume if need a fresh installation.