>-I installed MySQL.
>-I then download the latest CVS from turbine.
>-I then follow Turbine's steps for the database- namely:
> mysqladmin create turbine
> mysqladmin turbine < MySQL_users_roles_permissions.sql
>-I also download from www.worldserver.com/mm.mysql the JDBC drivers. The
>.tar includeds 2 .jar files. I placed the one named mysql_uncomp.jar to my
>classpath.
>- I then (and I'm guessing here, because when I try to login to Jetspeed I
>get an error ) changed the following lines in TurbineResources.properties
>
>database.default.driver=org.gjt.mm.mysql.Driver
>mysqldatabase.default.url=jdbc:mysql:thin:turbine@localhost:3306 (this use
>to be oracaledatabase.default.url=...)
>database.default.username=root
>database.default.password= <left blank for now>
>...
>database.adaptor.DBMM=org.gjt.mm.mysql.Driver
>
...
>Thanks,
>Steve B.
Steve,
I had this same problem trying how to figure our how I should change the
example line (which is for Oracle) into the appropriate line for MySQL.
I put the following lines in my TurbineResources.properties file.
database.default.driver=org.gjt.mm.mysql.Driver
database.default.url=jdbc:mysql://localhost:3306/jyve
The URL says:
* it's a JDBC URL
* use the "mysql" service (which is defined in /etc/services to
use port 3306)
* use the host "localhost"
* use port 3306 (which is redundant, given that 3306 is the default)
* connect to the database named "jyve"
Stephen
--
--------------------------------------------------------------
Please read the FAQ! <http://java.apache.org/faq/>
To subscribe: [EMAIL PROTECTED]
To unsubscribe: [EMAIL PROTECTED]
Archives and Other: <http://java.apache.org/main/mail.html>
Problems?: [EMAIL PROTECTED]