Hello all,
I figured it out and just wanted to share this with everyone who may experience the same thing.
If you get error like this:
Code:
[tomcat@cent01 work]$ java -jar ~/work/opensso/tools/configurator.jar -f /home/tomcat/work/test.testdomain.example.config
Configuration failed!
and nothing else in the screen then I advise you to check your 'input' file as in my case is: /home/tomcat/work/test.testdomain.example.config. The issue in my case was that for some reason configurator thinks that line that starts with '#' sign means something and doesn't know what to do with it, so for every comment that you placing in this file you have do it like this:
Code:
...
# Configuration data store configuration
DATA_STORE=dirServer
DIRECTORY_SSL=SIMPLE
# DIRECTORY_SERVER=localhost
DIRECTORY_SERVER=192.168.55.1
...
Here is the way I had it before:
Code:
...
# Configuration data store configuration
DATA_STORE=dirServer
DIRECTORY_SSL=SIMPLE
#DIRECTORY_SERVER=localhost
DIRECTORY_SERVER=192.168.55.1
...
Good luck.
Administrator - please mark this thread as solved.
Thank you