2017-03-21 6 views
0

Enterprise Integrator 6.0で新しいプロジェクトを開始していますが、EIツールに付属のEclipseディストリビューションからサーバを起動できません。EIツールからwso2エンタープライズインテグレータサーバを起動する

私はESBで働いていたとき、私は、サーバーを作成し、<ESB_INTALLATION_DIR>/binCARBON_HOME変数を指してランタイム環境を作成するために使用されるが、私はエンタープライズインテグレータと同じことを行う場合、私は次のエラーを取得する:

Configuration error java.io.FileNotFoundException: C:\Users\...\wso2ei-6.0.0\repository\conf\etc\logging-bridge.properties (The system cannot find the path specified) at java.io.FileInputStream.open0(Native Method) at java.io.FileInputStream.open(Unknown Source) at java.io.FileInputStream.<init>(Unknown Source) at java.io.FileInputStream.<init>(Unknown Source) at org.apache.juli.ClassLoaderLogManager.readConfiguration(ClassLoaderLogManager.java:466) at org.apache.juli.ClassLoaderLogManager.readConfiguration(ClassLoaderLogManager.java:311) at java.util.logging.LogManager$3.run(Unknown Source) at java.util.logging.LogManager$3.run(Unknown Source) at java.security.AccessController.doPrivileged(Native Method) at java.util.logging.LogManager.readPrimordialConfiguration(Unknown Source) at java.util.logging.LogManager.access$800(Unknown Source) at java.util.logging.LogManager$2.run(Unknown Source) at java.security.AccessController.doPrivileged(Native Method) at java.util.logging.LogManager.ensureLogManagerInitialized(Unknown Source) at java.util.logging.LogManager.getLogManager(Unknown Source) at java.util.logging.Logger.demandLogger(Unknown Source) at java.util.logging.Logger.getLogger(Unknown Source) at com.sun.jmx.remote.util.ClassLogger.<init>(Unknown Source) at sun.management.jmxremote.ConnectorBootstrap.<clinit>(Unknown Source) at sun.management.Agent.startLocalManagementAgent(Unknown Source) at sun.management.Agent.startAgent(Unknown Source) at sun.management.Agent.startAgent(Unknown Source) java.lang.ClassNotFoundException: org.wso2.carbon.server.Main at java.net.URLClassLoader.findClass(Unknown Source) at java.lang.ClassLoader.loadClass(Unknown Source) at java.lang.ClassLoader.loadClass(Unknown Source) at org.wso2.carbon.bootstrap.Bootstrap.loadClass(Bootstrap.java:59) at org.wso2.carbon.bootstrap.Bootstrap.main(Bootstrap.java:45) Java HotSpot(TM) 64-Bit Server VM warning: ignoring option MaxPermSize=256m; support was removed in 8.0

私はコンソールからEIサーバーを起動できますが、長期的にはEclipseから直接作業する方が簡単です。誰もこの設定を行う方法を明らかにすることはできますか? 私はjava jdk 1.8.0_25、windows 10を実行しています。

答えて

0

Eclipseの起動時に使用されるデフォルトの引数はすべて間違っていました.ESBプロジェクトのファイル構造を使用していたため、それがあるべきときFileNotFoundException .FORたとえば、デフォルトのサーバー構成では、

-Dconf.location="<CARBON_HOME>/repository/conf"

のようなものを持っているでしょう:

-Dconf.location="<CARBON_HOME>\conf"

integrator.batスクリプトで掘り下げた後にこれを見つけました。 ESBとEIの構成の違いに関する情報はhereです。

-EDIT-

これらの問題は、O fixed in the next release

も行っているようです
関連する問題