I just got it going myself about 2 hours ago. On Tomcat you uncomment the RMI configuration setting in WEB-INF\web.xml and set them up. Something like this:

<init-param>
   <param-name>rmi-port</param-name>
   <param-value>9900</param-value>
   <description>
       The RMI port for registering the repository in the RMI Registry.
       If equals 0, the default port is used.
   </description>
</init-param>
<init-param>
   <param-name>rmi-host</param-name>
   <param-value>harry</param-value>
   <description>
       The RMI host for registering the repository in the RMI Registry.
       If equals "" or missing, the default host is used.
   </description>
</init-param>
<init-param>
   <param-name>rmi-uri</param-name>
   <param-value></param-value>
   <description>
       The RMI uri for registering the repository in the RMI Registry.
       If missing, the uri is composed using the other rmi parameters
       and will have the format: //{rmi-host}:{rmi-port}/{repository-name}
   </description>
</init-param>

Then restart Tomcat.

Harry

JavaJ wrote:
I was trying the JLibrary JCR Browser and it requires RMI connection info. How do you enable RMI access in Jackrabbit?


Marcel Reutegger wrote:
JavaJ wrote:
Is there some kind of tool available that will allow you to inspect and
traverse your repository through a UI, like inspect nodes, properties,
node
types?
There are a couple of links to applications that can work on top of JCR repositories on this wiki page:

http://wiki.apache.org/jackrabbit/JcrLinks

I think jLibrary and JCR Browser have a quite nice UI.

If you are adventurous you can also try the jackrabbit contrib jcr-commands which provides a command line tool. Because it is a contrib there is no binary available and you have to build it from the sources. Have a look at the readme as a starting point:
https://svn.apache.org/repos/asf/jackrabbit/trunk/contrib/jcr-commands/README.txt

regards
  marcel




--
Harry Moore
Eye Street Software
Office: 301-813-3013
Fax: 301-813-3413

Reply via email to