Test OpenKM installation

From OpenKM Documentation
Revision as of 19:32, 25 January 2010 by Pavila (talk | contribs)

Jump to: navigation, search

Once you have configured OpenKM and JBoss you can start them. You can run JBoss from the command line from the $JBOSS_HOME folder:

$ ./bin/run.sh

This command will launch JBoss application server and start the OpenKM application. By default JBoss only listen at localhost, so OpenKM only will be accessible from http://localhost:8080/OpenKM. You will see a login screen like this:


Okm user guide 001.jpeg


You can log into OpenKM with okmAdmin user (default password is "admin"). If you want OpenKM to be accessible from others computers in your network, try to start JBoss with the -b parameter. This parameter means “bind” and with this command:

$ ./bin/run.sh -b 0.0.0.0

JBoss will bind to all network interfaces of the computer. Now OpenKM can be accessed from another computer at http://your-domain.com:8080/OpenKM.


Nota advertencia.png Don't close the terminal or JBoss will shutdown and OpenKM application will stop.

If you have configured JBoss service in your Debian / Ubuntu box, you can launch it this way:

$ /etc/init.d/jboss start

You can watch the server log to see OpenKM messages.

$ tail -f $JBOSS_HOME/server/default/log/server.log