From: Thomas F. <tfo...@cs...> - 2005-01-14 08:10:25
|
I CC the coefficient users list, as this may help other people, too. It's also the logical place to ask and answer questions. You can subscribe here: http://lists.sourceforge.net/lists/listinfo/coefficient-users On Wed, 2005-01-12 at 22:44 -0500, Carlos Serpa wrote: > I tried downloading jboss and tomcat, they both run fine, but I can=92t > seem to install coefficient in it=85 I tried to follow all the steps bu= t > in my opinion the install guide is a little vague. How do I create the > datasource? You only need to setup a datasource for the JBoss installation. The datasource can be set up by creating a file in the deploy directory: e.g. ${JBOSS_HOME}/server/default/deploy/ For instance, to create a postgresql datasource, create a file (call it, say, postgres-ds.xml) with the following contents (obviously substituting reasonable values for ${HOST} , ${DB_NAME} , ${DB_USERNAME} and ${PASSWORD}) <?xml version=3D"1.0" encoding=3D"UTF-8"?> <datasources> <local-tx-datasource> <jndi-name>CoefficientDS</jndi-name> <connection-url>jdbc:postgresql://${HOST}/${DB_NAME}</connection-url> <driver-class>org.postgresql.Driver</driver-class> <user-name>${DB_USERNAME}</user-name> <password>${PASSWORD}</password> </local-tx-datasource> </datasources> For the tomcat install, you need to setup up your connection properties as per http://coefficient.sourceforge.net/install/installWA.html In Tomcat, coefficient connects directly to the database. In JBoss, it connects via the datasource. > If you=92d be so kind to provide me (if you have the time) with a more > detailed list of processes in order to get coefficient running I=92d > appreciate it! In return I can provide you bug and issue reports. Cool, and good luck getting it going. If you have more trouble, please mail the users list (which I'm subscribed to). Regards --=20 Thomas Fogwill <tfo...@cs...> --=20 This message has been scanned for viruses and dangerous content by MailScanner, and is believed to be clean. MailScanner thanks transtec Computers for their support. |