Line: 1 to 1 | ||||||||
---|---|---|---|---|---|---|---|---|
WMSX examplesNote: If your home directory is located on AFS, it is advised to source the following shell script before logging on to the Grid:## Make new .globus directory and export it: | ||||||||
Changed: | ||||||||
< < | if -d /tmp/$USER/globus ; then chmod -R 755 /tmp/$USER/globus ; fi | |||||||
> > | chmod -R 755 /tmp/$USER/globus >&/dev/null | |||||||
rm -rf /tmp/$USER/globus mkdir -p /tmp/$USER/globus cp $HOME/.globus/usercert.pem /tmp/$USER/globus/ | ||||||||
Line: 13 to 13 | ||||||||
export X509_USER_CER=/tmp/$USER/globus/usercert.pem export X509_USER_KEY=/tmp/$USER/globus/userkey.pem ## Make new .glite directory and export it: | ||||||||
Changed: | ||||||||
< < | if -d /tmp/$USER/glite ; then chmod -R 755 /tmp/$USER/glite ; fi | |||||||
> > | chmod -R 755 /tmp/$USER/glite >&/dev/null | |||||||
rm -rf /tmp/$USER/glite mkdir -p /tmp/$USER/glite | ||||||||
Changed: | ||||||||
< < | cp -rd $HOME/.glite/vomses /tmp/$USER/glite/ | |||||||
> > | cp -rd $HOME/.glite/* /tmp/$USER/glite/ | |||||||
export GLITE_USER_HOME=/tmp/$USER/glite
(for bash), or
## Make new .globus directory and export it: | ||||||||
Changed: | ||||||||
< < | if ( -d /tmp/$USER/globus ) then chmod -R 755 /tmp/$USER/globus endif | |||||||
> > | chmod -R 755 /tmp/$USER/globus >&/dev/null | |||||||
rm -rf /tmp/$USER/globus mkdir -p /tmp/$USER/globus cp $HOME/.globus/usercert.pem /tmp/$USER/globus/ | ||||||||
Line: 32 to 30 | ||||||||
setenv X509_USER_CER /tmp/$USER/globus/usercert.pem setenv X509_USER_KEY /tmp/$USER/globus/userkey.pem ## Make new .glite directory and export it: | ||||||||
Changed: | ||||||||
< < | if ( -d /tmp/$USER/glite ) then chmod -R 755 /tmp/$USER/glite endif | |||||||
> > | chmod -R 755 /tmp/$USER/glite >&/dev/null | |||||||
rm -rf /tmp/$USER/glite mkdir -p /tmp/$USER/glite | ||||||||
Changed: | ||||||||
< < | cp -rd $HOME/.glite/vomses /tmp/$USER/glite/ | |||||||
> > | cp -rd $HOME/.glite/* /tmp/$USER/glite/ | |||||||
setenv GLITE_USER_HOME /tmp/$USER/glite (for tcsh). | ||||||||
Changed: | ||||||||
< < | This ensures that the necessary files are accessible even after your AFS tickets expire. | |||||||
> > | This ensures that the necessary files are accessible even after your AFS tickets expire (as they are copied to some local directory). | |||||||
Simple job submission with traditional JDL files |