Difference between revisions of "Test OpenKM installation"

From OpenKM Documentation
Jump to: navigation, search
(Created page with '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 JBos…')
 
Line 4: Line 4:
  
 
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:
 
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:
 +
 +
 +
<center>[[File:Okm_user_guide_001.jpeg|317px]]</center>
 +
 +
 +
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.
 +
 +
{{Warning|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

Revision as of 11:22, 25 January 2010

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