我在Windows 2012R2上安裝了IBM Mobile First Platform服務器7.0。
我使用tomcat 7作爲應用程序服務器,Oracle 11g作爲數據庫。
我能夠在控制檯上部署.wlapp文件,但是當我在控制檯上部署任何適配器時,它說:「部署適配器名稱。適配器...」但沒有任何反應。無法在MobileFirst Platform Operations Console上部署.adapter
截圖:
我在Windows 2012R2上安裝了IBM Mobile First Platform服務器7.0。
我使用tomcat 7作爲應用程序服務器,Oracle 11g作爲數據庫。
我能夠在控制檯上部署.wlapp文件,但是當我在控制檯上部署任何適配器時,它說:「部署適配器名稱。適配器...」但沒有任何反應。無法在MobileFirst Platform Operations Console上部署.adapter
截圖:
從Tomcat FAQ上How to deal with OutOfMemory errors:
A webapp that uses lots of libraries with many dependencies, or a server maintaining lots of webapps could exhauste the JVM PermGen space. This space is where the VM stores the classes and methods data. In those cases, the fix is to increase this size. The Sun VM has the flag -XX:MaxPermSize that allows to set its size (the default value is 64M)
-XX:MaxPermSize=128m
而在你看到服務器日誌...? –
是的,每次都有錯誤記錄說明FAILURE => UndeclaredThrowableException FAILURE => PermGen空間 –
太棒了。增加分配給tomcat實例的permgen內存。 –