• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • We are looking for U.S.-based freelancer or agency working with SEO or WordPress for a quick 30-min interviews to gather feedback on XOVI, a successful German SEO tool we’re looking to launch in the U.S.
    If you qualify and participate, you’ll receive a $30 Amazon gift card as a thank-you. Please apply here. Thanks for helping shape a better SEO product for agencies!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Mysql access problem

F

fparvini

Guest
Hi
I have a problem accesssign MySQL from JSP .
I have a very simple code (at the bottom).
This code gives the following error message :

java.sql.SQLException: Unable to connect to any hosts due to exception: java.security.AccessControlException: access denied (java.net.SocketPermission localhost resolve)

I have tried may be ten different methods,
1. changing catalina.policy,
2. INSERT INTO db VALUES('localhost.localdomain' in Mysql
3. changing java.policy
among them , but NONE of them worked.
I really don't know what to do next.

Any help is really appreciated.





<%@ page import="java.sql.*" %>
<%@ page errorPage="ExceptionHandler.jsp" %>

<html>
<BODY>


<%
Statement s = null;
ResultSet rs = null;
Connection con= null;

out.println("Sunday, January 22, 2006 3:55:31 PM");

try
{
Class.forName("com.mysql.jdbc.Driver").newInstance();
con = DriverManager.getConnection("jdbc:mysql://localhost/test?user=my_user&password=my_pass");

}
catch (Exception e)
{
out.println("<p> Error , cause:</p> <b> " + e + "</b>");

}

%>
</BODY>
</HTML>
 
Back
Top