Marko Sarunac wrote:
> 
> I am running mySql 3.23.32 on Redhat 7, with Apaache and Tomcat Jakarta 3.2.1
> and for database connection i use mm.mysql.jdbc-1.2c
> Here is my problem
> 
> I have got MySql to run fine but when i try to interfaec it over the web i get
> te follwoing error
> 
> error 500
> javax.servlet.ServletException: Server configuration denies access to data
> source
> 
> The jsp page it self has code that is as follows
> 
> <%@ page language="java" import="java.sql.*" %>
> <html code here>
> <%
> Class.forName("org.gjt.mm.mysql.Driver");
> 
> Connection myConn =
> 
>DriverManager.getConnection("jdbc:mysql:///test_db1?user=Username&password=password");
> 
> Statement stmt = myConn.createStatement();
> ResultSet myResultSet = stmt.executeQuery("select * from test_tb1");
> 
> Is the a problem with mySql user permissions, or tomcat, or JDBC driver or what
> else.
> 
> All help is greatelly appreciated!



Your connection string my require an address
jdbc:mysql://localhost/test_db1
for example... make sure that mysql user permission allow access from the
tomcat machine or whatever address it is trying to use.

---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to