我的目标是在glassfish服务器上运行php。我安装了quercus并将其作为glassfish中的一个应用程序部署在(c:\glassfish4\glassfish\domains\domain1\applications\quercus)下。
现在我尝试连接到mysql。mysql服务器正在运行,并且通过命令(mysql-u root-p)验证连接。
下一个test.php将创建:
<?php
$servername="localhost";
$username="root";
$password="whatever";
$conn = new mysqli($servername, $username, $password);
if (!$conn) {
die("Failed : " . mysqli.connect_error());
}
echo "Connection Successful!";
?>
运行test.php会显示以下消息:
Warning: A link to the server could not be established.
url=jdbc:mysql://localhost/?
jdbcCompliantTruncation=false&characterSetResults=ISO885_1&characterEncoding=ISO8859_1&userServerPrepStmts=true
driver=com.mysql.jdbc.Driver com.caucho.quercus.QuercusModuleException:java.lang.ClassNotFoundException: com.mysql.jdbc.Driver
Connection Successful!
从消息中,可能没有安装mysql jdbc驱动程序。
我将驱动程序添加到c:\glassfish4\glassfish\domains\domain1\lib\mysql-connector-java-8.0.11\mysql-connector-java-8.0.11.jar。我不知道如何从glassfish管理控制台添加它。它不会显示在jdbc>连接池下。
第二次编辑(基于注解):jar文件被移动到…\domain1\lib和…\glassfish\lib中。系统已完全重新启动。要添加连接池,请按照以下链接上的说明进行操作:https://dev.mysql.com/doc/connector-j/5.1/en/connector-j-usagenotes-glassfish-config.html
然后我得到以下错误消息:
HTTP Status 500 - Internal Server Error:
type Exception report
message Internal Server Error
description The server encountered an internal error that prevented it from fulfilling this request.
exception java.lang.IllegalStateException: getoutputStream() has already been called for this response.
...
暂无答案!
目前还没有任何答案,快来回答吧!