Software Links
Getting Started
- Doc Structure
- A Globus Primer
- Globus Is Modular!
- Quickstart
- Installing GT
- Platform Notes
- GT Developer's Guide
- GT User's Guide (coming soon)
- Migrating from GT2
- Migrating from GT3
Reference
- Best Practices
- Coding Guidelines
- API docs
- Public Interfaces (coming soon)
- Resource Properties
- Samples
- Glossary
- Performance Studies (coming soon)
Manuals
Common Runtime
Security
- Non-WS (General) Security
- WS Java Security
- Message-level
- Authz Framework
- CAS
- Delegation Service
- MyProxy
- GSI-OpenSSH
- SimpleCA
- SGAS
Data Mgt
MDS4
Execution Mgt
RFT in 4.1.3 works with MySQL database. A MySQL schema file is provided at $GLOBUS_LOCATION/share/globus_wsrf_rft/rft_schema_mysql.sql. You will need to download MySQL drivers (MySQL connector/J 3.1 and not 3.0) from here and copy the driver jar to $GLOBUS_LOCATION/lib. You will also need to make following changes :
Create a RFT Database and populate it with mysql schema.
mysqladmin -h hostname create rftDatabase -p mysql -h hostname -D rftDatabase source share/globus_wsrf_rft/rft_schema_mysql.sql
![[Note]](/docbook-images/note.gif)
Note If you are using older ( earlier than 4.1 ) versions of MySQL, you will need to use the schema
$GLOBUS_LOCATION/share/globus_wsrf_rft/rft_schema_mysql_pre4.0.sqlto make RFT work. See Bug 3633 for more details.Edit
$GLOBUS_LOCATION/etc/globus_wsrf_rft/jndi-config.xmland change the following values:for connectionString, change
jdbc:postgresql://host/rftDatabasetojdbc:mysql:///rftDatabasefor driverName, change
org.postgresql.Drivertocom.mysql.jdbc.Driverand change the userName and password to whatever was set when users were created for MySQL.