Note: This version of the VDT (1.3.7) is no longer supported. Feel free to look through the documentation and install it, but we cannot guarantee support for it. The current stable release is 2.0.0.
There is a bug in the VOMS configuration code for VDT 1.3.7 that prevents the VOMS Admin website from listing sibling VOs. If you have installed VOMS from VDT 1.3.7 and want the siblings webapp to work, follow the instructions below.
root$VDT_LOCATION/post-install/apache stop
$VDT_LOCATION/post-install/tomcat-5 stop
$VDT_LOCATION/apache/conf/httpd.conf
Find this code:
JkMount /voms/* tomcat5
<Location /voms>
SSLVerifyClient require
</Location>
RewriteEngine on
RewriteRule ^/edg-voms-admin/(.*)$ /voms/$1 [redirect=permanent]
Immediately afterward, add
JkMount /vomses/* tomcat5
JkMount /vomses tomcat5
<Location /vomses>
SSLVerifyClient require
</Location>
cp $GLITE_LOCATION_VAR/etc/voms-admin/voms-siblings.xml \ $VDT_LOCATION/tomcat/v5/conf/Catalina/localhost/voms-siblings.xml
$VDT_LOCATION/post-install/tomcat-5 start
$VDT_LOCATION/post-install/apache start