[Installation, Configuration & Deployment] - Re: JBoss on Linux HELLPPPPPP!!!
by sheila lety
Hi Sandor!
I'm ne will try to explain but
I need to configure te source of JBoss server on Redhat Enterprise Edition. So i configure JDK-1.5.0_05 on /usr/local/java and setup the following environment variables in to a script on vi /etc/profile.d
JAVA_HOME="/usr/local/java"
JRE_HOME="/usr/local/java/jre"
CLASSPATH="$JAVA_HOME:$JAVA_HOME/lib:$JRE_HOME/lib:."
MANPATH="$MANPATH:$JAVA_HOME/man"
JAVA_DOC="$JAVA_HOME/docs"
PATH="$PATH:$JAVA_HOME/bin:$JRE_HOME/bin"
export JAVA_HOME JRE_HOME CLASSPATH MANPATH JAVA_DOC PATH
we create a short program to test them and it work.
After that we try to install jboss-4.0.3-src, we unzip the file on /usr/local/jboss then we where searching for a way to configure but we didint find the file to do it, we found build, install and conf so we dont now which one of then was the rigth one. Then we try the build #sh build.sh, but after a few minutes it give an error.
If you have already install jboss on linux which version you recommends and where are the steps to do it, we can use any version of jboss but it has the be the source.
Can you help us its very urgent!
Thanks for your time
Regards
Sheila
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4056000#4056000
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4056000
18Â years, 10Â months
[JBoss jBPM] - Re: How can I split storage scheme JBPM and general?
by estaub
fady.matar wrote:
anonymous wrote : It is not recommended to use two JNDI for the same physical database.
I'm no expert here, but I don't think this is exactly correct. Accessing different databases (schemas) in the same physical database using different JNDI names is perfectly fine, except perhaps for Hibernate. In fact, I think it's the ONLY way to do it within J2EE.
In slogger's case, he showed JNDI with different schemas (i.e., user-names):
| 1-th config:
| ...
| <jndi-name>Oracle10jbpm</jndi-name>
| <connection-url>jdbc:oracle:thin:@192.168.222.116:1521:ora10utf</connection-url>
| <driver-class>oracle.jdbc.driver.OracleDriver</driver-class>
| <user-name>jbpm</user-name>
| ...
|
| 2-th config:
| ...
| <jndi-name>Oracle10db</jndi-name>
| <connection-url>jdbc:oracle:thin:@192.168.222.116:1521:ora10utf</connection-url>
| <driver-class>oracle.jdbc.driver.OracleDriver</driver-class>
| <user-name>pilot</user-name>
|
slogger,
I can't help much with the Hibernate issue, but my reading suggests that if you want coherent transactions across the two databases, you need to use the features of and <hibernate-mapping> elements to bind together the schemas. Look at the way the identity schemas are bound in to JBPM for starters, then note that <hibernate-mapping> has a "schema" attribute.
If you want independent transactions between the two contexts, you're on your own!
-Ed Staub
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4055989#4055989
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4055989
18Â years, 10Â months