Page 1 of 1

Problem with the Community development environment

PostPosted:Thu Aug 12, 2021 2:42 pm
by Marcus_B
Hello,
i downloaded the ova and started the VM.
I can see the desktop etc.
but - when i try the URL http://localhost:8080/OpenKM in the local browser - i got "unable to connect"

What can i do or check ?

Thank you

Re: Problem with the Community development environment

PostPosted:Sat Aug 14, 2021 7:38 am
by jllort
Ensure you have started the OpenKM service from the command line:
Code: Select all
sudo su
service openkm start
Take a look at the video where trying to explain how to configure it:
https://www.youtube.com/watch?v=9ugBYf5 ... e=emb_logo

Check if the tomcat is started:
Code: Select all
ps ax | grep tomcat
Finally take a look at openkm.log at /home/openkm/Development/tomcat/logs

Re: Problem with the Community development environment

PostPosted:Tue Aug 17, 2021 1:23 pm
by Marcus_B
mmmhh i dont know what is wrong here...
web.PNG
web.PNG (76.75 KiB) Viewed 8122 times
tomcat.PNG
tomcat.PNG (490.52 KiB) Viewed 8122 times
service.PNG
service.PNG (313.39 KiB) Viewed 8122 times

Re: Problem with the Community development environment

PostPosted:Fri Aug 20, 2021 6:34 pm
by jllort
I think in some Development environement version of the CE version we have forgotten to compile the project. From Eclipse or command line should compile the code ( OpenKM.war file ).

Take a look at Development/tomcat/webapps folder if you have a OpenKM.war file, or OpenKM folder or a hard link in red ( it mean the file really do not exist ).

From command line should be something like ( I think the project should be into Development/workspace, not 100% sure now ):
Code: Select all
mvn -Dmaven.test.skip=true package
also in the source code should be a script for it purpose named build.sh
Code: Select all
./build.sh
From Eclipse I think you have a build maven runtime configured in the toolbar.