-
Notifications
You must be signed in to change notification settings - Fork 60
Running a jackrabbit server
NOTE: For a production system, see Running-jackrabbit-in-tomcat-with-mysql
Make sure you have a Java Virtual Machine installed on your computer. If not, you can grab one from here: http://www.java.com/en/download/manual.jsp
Download the latest 2.4.X – version of Jackrabbit from the Jackrabbit Downloads page
Then, in the folder where you downloaded the .jar file, just launch it
java -jar jackrabbit-standalone-*.jar
By default the server is listening on the 8080 port, you can change this by specifying the port on the command line.
java -jar jackrabbit-standalone-*.jar --port 8888
For unix systems, you can get the start-stop script for /etc/init.d from Jackrabbit-startup-script
Jackrabbit provides a web interface running on http://localhost:8080 (change the port with your own if needed). In the “default workspace” part on the left you’ll find a “Populate” link. You can go there and populate your workspace with some sample contents. Note that this content will not be usable with the Symfony Cmf.
Here you go! You have a working JCR backend on your computer.
In the “default workspace” part you’ll find a “Browse” link. Just put any username and password combination and the server will let you browse the content.
There’s a PHP application called phpcrbrowser, which allows you to browse your jackrabbit repository within a browser a little bit more convenient than the method provided by Jackrabbit. Get it at https://github.com/symfony-cmf/phpcrbrowser
It’s written in Liip’s “old” framework Okapi, but uses Jackalope as the transport layer.
For a while, we provided our own compiles of jackrabbit with some patches we needed for davex to properly work. As of 2.3.6, all those patches have been merged into the official release. The old custom jackrabbits can still be downloaded here: http://patched-jackrabbit.s3-website-eu-west-1.amazonaws.com/
See README.jackalope.patches.md for details about which patches are in there.
For a setup to run jackrabbit with tomcat and mysql see https://github.com/jackalope/jackalope/wiki/Running-jackrabbit-in-tomcat-with-mysql