Hi
I am trying to move an application from MemoryRealm to JDBCRealm. I have inserted the following block into my server.xml file:
I can bring up Tomcat fine, but when I go to install the application onto Tomcat, I get the following error:
I have tried all sorts of things involving removing context, fresh installs etc etc, but I am at a loss as to what the problem is.
Any assistance would be greatly appreciated!
I am trying to move an application from MemoryRealm to JDBCRealm. I have inserted the following block into my server.xml file:
Code:
<Realm className="org.apache.catalina.realm.JDBCRealm" debug="0"
driverName="org.postgresql.Driver"
connectionURL="jdbc:postgresql:gold"
connectionName="dataowner" connectionPassword="owner"
userTable="user" userNameCol="username" userCredCol="password"
userRoleTable="role" roleNameCol="rolename"
digest="md5"/>
I can bring up Tomcat fine, but when I go to install the application onto Tomcat, I get the following error:
Code:
BUILD FAILED
file:/u/jbodey/dev/gold/build.xml:94: java.io.IOException: Server returned HTTP response code: 401 for URL: [URL unfurl="true"]http://headline-35.asidua.com:8080/manager/install?path=%2Fgold&config=file%3A%2Fscratch%2Fbuild%2Fgold%2FMETA-INF%2Fcontext.xml&war=file%3A%2Fscratch%2Fbuild%2Fgold[/URL]
I have tried all sorts of things involving removing context, fresh installs etc etc, but I am at a loss as to what the problem is.
Any assistance would be greatly appreciated!