FAQs
When creating a new connection I get the part of the wizard which allows me to "You can specify additional connection parameters". Buttons back, next and finish are disabled. Basically now way to add a new connection.
This is an issue of release 1.0.0 and 1.0.1. It will be fixed in the next release 1.1.0. There is a workaround: Uncheck the "Get base DNs from Root DSE" check box, the 'Next' button will be activated.
When browsing and expanding an entry, Studio only shows 1000 child entries.
Studio uses a client-side count limit when browsing the DIT. This limit is defined in the connection properties. See
Connection Properties
how to change it.
How to set the Java VM to use?
The first option is to start Apache Directory Studio with the following command line parameters:
- On Linux:
./ApacheDirectoryStudio -vm <path to java executable>
- On Windows:
"Apache Directory Studio.exe" -vm <path to java executable>
The second option is to create a file Apache Directory Studio.ini (for Mac OS X and Windows) or ApacheDirectoryStudio.ini (for Linux) in Studio's home directory with the following content:
-vm <path to java executable>
Please notice the line break between -vm an the path.
How to increase the heap memory?
The first option is to start Apache Directory Studio with the following command line parameters:
- On Linux:
./ApacheDirectoryStudio -vmargs -Xms128m -Xmx512m -XX:PermSize=128m -XX:MaxPermSize=128m
- On Windows:
"Apache Directory Studio.exe" -vmargs -Xms128m -Xmx512m -XX:PermSize=128m -XX:MaxPermSize=128m
The second option is to create a file Apache Directory Studio.ini (for Mac OS X and Windows) or ApacheDirectoryStudio.ini (for Linux) in Studio's home directory with the following content:
-vmargs -Xms128m -Xmx512m -XX:PermSize=128m -XX:MaxPermSize=128m
Please notice the line breaks.
Location of Apache Directory Studio settings
The settings are located per default in your home directory under the directory .ApacheDirectoryStudio.
The file containing all connections is
.ApacheDirectoryStudio/.metadata/.plugins/org.apache.directory.studio.connection.core/connections.xml
The file containing all searches and bookmarks is
.ApacheDirectoryStudio/.metadata/.plugins/org.apache.directory.studio.ldapbrowser.core/browserconnections.xml
The file containing the history of the connection wizard (recently used hosts and bind users) is
.ApacheDirectoryStudio/.metadata/.plugins/org.apache.directory.studio.connection.ui/dialog_settings.xml
The file containing the history of search settings (recently used DNs, filters, returning attributes) is
.ApacheDirectoryStudio/.metadata/.plugins/org.apache.directory.studio.ldapbrowser.common/dialog_settings.xml
There are some more dialog_settings.xml files in the other plugins directories.
BTW: the location of the settings directory could be configured by changing the parameter "osgi.instance.area.default" in configuration/config.ini.