ignite 集成oracle,Ignite 配置更新Oracle JDBC Drive

本文档详细描述了在使用Oracle 12C作为Ignite Repository时遇到的ORA-28040错误的解决过程。错误原因是由于Ignite使用的JDBC版本过低。解决方案包括升级JDBC驱动,从ojdbc14.jar替换为ojdbc7.jar,并调整Ignite的堆栈大小设置。在完成这些步骤后,需要重新启动Ignite服务以应用更改。然而,重启后发现Ignite无法启动,日志显示栈大小设置过小。通过增大堆栈大小设置为256k解决了此问题,Ignite成功启动。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

如果使用Oracle 12C

作为Ignite 的Repository的话,在Repository Createion Wizard的配置过程中,会出现ORA-28040:No

matching authentication

protocol错误,出现这个错误是因为Ignite使用的JDBC版本过低原因造成。需要升级JDBC的版本

dc06f16549fe8837dea8e459b7689191.png

步骤1:先查看本地Java版本并去官方网站下载Oracle JDBC

Drive

[[email protected] ignite_8_3_407]# java -version

java version "1.7.0_25"

Java(TM) SE Runtime Environment (build

1.7.0_25-b15)

Java HotSpot(TM) 64-Bit Server VM (build 23.25-b01, mixed

mode)

[[email protected] ignite_8_3_407]#

992f1ba859f8926519950dd3417690ef.png

步骤2: 关闭Ignite服务,进入

/usr/local/ignite8/ignite_8_3_407目录后,执行shutdown.sh脚本

[[email protected] ignite_8_3_407]# ./shutdown.sh

**************************************************************************

*

* If this script fails you can manually stop the program

by

* doing the following steps:

*

* 1) Set the JAVA_HOME environment variable to your Java

installation.

* 2) Add /bin to your PATH environment

variable.

* 3) Go to the /tomcat/bin

directory.

* 4) Run ./shutdown.sh

*

*

***************************************************************************

Catalog exists...

Found java 1.4 or higher

JAVA HOME IS SET TO /usr

PATH IS SET TO

/usr/bin:/usr/java/jdk1.7.0_25/bin:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin

IBM Jvm Is Set To NO

Setting the -server option for JVM

JAVA_OPTS is -server -Xms128m -Xmx512m

-XX:MaxPermSize=128m -Dcom.sun.management.jmxremote

-Djava.net.preferIPv4Stack=true

Using CATALINA_BASE:

/usr/local/ignite8/ignite_8_3_407/iwc/tomcat

Using CATALINA_HOME:

/usr/local/ignite8/ignite_8_3_407/iwc/tomcat

Using CATALINA_TMPDIR:

/usr/local/ignite8/ignite_8_3_407/iwc/tomcat/temp

Using JRE_HOME: /usr

Using CLASSPATH:

/usr/local/ignite8/ignite_8_3_407/iwc/tomcat/bin/bootstrap.jar:/usr/local/ignite8/ignite_8_3_407/iwc/tomcat/ignite_config

Feb 25, 2014 9:06:52 AM

org.apache.catalina.startup.Catalina stopServer

SEVERE: Catalina.stop:

java.net.ConnectException: Connection refused

at

java.net.PlainSocketImpl.socketConnect(Native Method)

at

java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:339)

at

java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:200)

at

java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:182)

at

java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392)

at

java.net.Socket.connect(Socket.java:579)

at

java.net.Socket.connect(Socket.java:528)

at

java.net.Socket.(Socket.java:425)

at

java.net.Socket.(Socket.java:208)

at

org.apache.catalina.startup.Catalina.stopServer(Catalina.java:422)

at

sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

at

sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)

at

sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

at

java.lang.reflect.Method.invoke(Method.java:606)

at

org.apache.catalina.startup.Bootstrap.stopServer(Bootstrap.java:338)

at

org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:416)

**************************************************************************

*

* IWC is shutting down.

*

***************************************************************************

Exiting script after webserver stopped.

步骤3:进入/iwc/tomcat/webapps/iwc/WEB_INF/lib

目录,将 ojdbc14.jar改名为ojdbc14.jar_10g,然后将下载的ojdbc7.jar

上传到该目录

[[email protected] lib]# cd

/usr/local/ignite8/ignite_8_3_407/iwc/tomcat/webapps/iwc/WEB-INF/lib

/usr/local/ignite8/ignite_8_3_407/iwc/tomcat/webapps/iwc/WEB-INF/lib

[[email protected] lib]# mv ojdbc14.jar ojdbc14.jar_10g

步骤4:重启Ignite服务

[[email protected] ignite_8_3_407]# ./startup.sh

**************************************************************************

*

* If this script fails you can manually start the program

by

* doing the following steps:

*

* 1) Set the JAVA_HOME environment variable to your Java

installation.

* 2) Add /bin to your PATH environment

variable.

* 3) Go to the /tomcat/bin

directory.

* 4) Run ./startup.sh

* 5) Bring up the link (http://machine

Name:8123

* or http://machine IP:8123) in your browser.

*

*

***************************************************************************

Catalog exists...

Found java 1.5 or higher

JAVA HOME IS SET TO /usr

PATH IS SET TO

/usr/bin:/usr/java/jdk1.7.0_25/bin:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin

The server port is 8127

The port is 8123

IWC is not running.

The port 8123 is open

The port 8127 is open

Starting Ignite

IBM Jvm Is Set To NO

Setting the -server option for JVM

JAVA_OPTS is -server -Xms128m -Xmx512m -Xss256k

-XX:MaxPermSize=128m -Dcom.sun.management.jmxremote

-Djava.net.preferIPv4Stack=true

Waiting on initialization...please be patient

**************************************************************************

*

* Ignite has been launched, wait one minute then bring

up

* this link in your browser:

*

* http://:8123 or http://

IP>:8123

*

* If the link does not work, check

/tomcat/logs

* and make sure a firewall is not running on this

machine.

*

***************************************************************************

Exiting script after webserver launched.

然后使用http://:8123 or http://

IP>:8123 发现Ignite无法打开。

848ee9bff3166e35c44db149865d8078.png

进入tomcat的日志目录,发现catalina.out下有如下错误信息。

[[email protected] logs]# cd

/usr/local/ignite8/ignite_8_3_407/iwc/tomcat/logs

[[email protected] logs]# more

catalina.out

The stack size specified is too small,

Specify at least 160k

Error: Could not create the Java Virtual

Machine.

Error: A fatal exception has occurred.

Program will exit.

The stack size specified is too small,

Specify at least 160k

Error: Could not create the Java Virtual

Machine.

Error: A fatal exception has occurred.

Program will exit.

The stack size specified is too small,

Specify at least 160k

Error: Could not create the Java Virtual

Machine.

Error: A fatal exception has occurred.

Program will exit.

在官网搜索了一下资料发现了问题和解决方案:

Some Operations Systems, the 64-bit JRE requires a larger

stack size than the default of 128K.  If this is the case, Ignite will not

start and will report an error like the following

Step 1:找到

dir>/iwc/tomcat/bin/catalina.sh

Step 2:找到JAVA_OPTS="$JAVA_OPTS -Xss128k"

将其改为 JAVA_OPTS="$JAVA_OPTS -Xss256k"

if [ $SOLARIS64 ] && [

$SOLARIS64 = "Y" ]

then

JAVA_OPTS="$JAVA_OPTS -Xss256k -d64"

else

if [ "$1" !=

"stop" ] ; then

JAVA_OPTS="$JAVA_OPTS -Xss128k"

fi

fi

将其修改为如下

if [ $SOLARIS64 ] && [

$SOLARIS64 = "Y" ]

then

JAVA_OPTS="$JAVA_OPTS -Xss256k -d64"

else

if [ "$1" !=

"stop" ] ; then

JAVA_OPTS="$JAVA_OPTS -Xss256k"

fi

fi

Step 3: 重启启动Ignite服务。问题解决!

参考资料:

原文:http://www.cnblogs.com/kerrycode/p/3567382.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值