java.security.AccessControlException indicates you are running tomcat with the security manager. You'll need to edit your catalina.policy file to allow this connection. The policy file itself has a number of examples, here's just one modified to your situation below:

grant codebase "jar:file:${catalina.home}/common/lib/mysql-connector-java-3.14.jar!/-" {
   permission java.net.SocketPermission "127.0.0.1:3306", "connect" ;
}

--David

Bob Hall wrote:

Cameron,

You wrote:

I have a newly installed and configured Ubuntu
server running
Tomcat5.5 and Mysql 5.0. This server was created in
an attempt to
migrate from a Red Hat server in a similar
configuration, running the
exact same webapp. Most of the
configuration/classpath differences
between the two platforms have been ironed out.

The Problem:

When our webapp trys to connect to the database on
localhost, an exception

'java.security.AccessControlException: access denied
(java.net.SocketPermission localhost resolve)'

is generated.


Looks like the OS is unable to resolve localhost.
Does the ubuntu server have the following in its
/ect/hosts file?

127.0.0.1    localhost

-Bob

__________________________________________________
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com
---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to