1
アプリケーション・サーバーの始動時にエラーが発生します。私はこのエラーだけを特定のサーバー、完璧にうまく始まる他のものにしています。私たちはWebSphere 8.0.0.9バージョンを使用しています。私は以下のログを共有しました。私はWebSphereシステムに精通していないので、このログの横に他のものが必要な場合は、私はそれを共有しようとします。特定のWebSphere Application Serverを起動できません
例外ログ:
class load: org.eclipse.osgi.service.debug.DebugTrace from: file:/opt/IBM/WebSphere/AppServer/plugins/org.eclipse.osgi_.jar
class load: org.osgi.framework.InvalidSyntaxException from: file:/opt/IBM/WebSphere/AppServer/plugins/org.eclipse.osgi_.jar
java.lang.NullPointerException
at java.security.SecureRandom.nextBytes(SecureRandom.java:292)
at java.security.SecureRandom.next(SecureRandom.java:311)
at java.util.Random.nextLong(Random.java:252)
at java.io.File.generateFile(File.java:1693)
at java.io.File.createTempFile0(File.java:1736)
at java.io.File.createTempFile(File.java:1814)
at org.eclipse.osgi.internal.baseadaptor.AdaptorUtil.canWrite(AdaptorUtil.java:208)
at org.eclipse.core.runtime.adaptor.LocationManager.canWrite(LocationManager.java:276)
at org.eclipse.core.runtime.adaptor.LocationManager.buildLocation(LocationManager.java:204)
at org.eclipse.core.runtime.adaptor.LocationManager.initializeLocations(LocationManager.java:150)
at org.eclipse.core.runtime.adaptor.EclipseStarter.startup(EclipseStarter.java:275)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:175)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:60)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:37)
at java.lang.reflect.Method.invoke(Method.java:611)
at org.eclipse.core.launcher.Main.invokeFramework(Main.java:340)
at org.eclipse.core.launcher.Main.basicRun(Main.java:282)
at org.eclipse.core.launcher.Main.run(Main.java:981)
at com.ibm.wsspi.bootstrap.WSPreLauncher.launchEclipse(WSPreLauncher.java:394)
at com.ibm.wsspi.bootstrap.WSPreLauncher.main(WSPreLauncher.java:157)
class load: java/text/MessageFormat
class load: java/text/FieldPosition
class load: java/util/Date
この問題をリンクの説明で解決できました。 Linuxのjre ext libのパスには以下のようなものがあります。 -Djava.ext.dirs =/opt/IBM/WebSphere/AppServer/java/jre/lib/ext – Emre
ステータス画面のスクリーンショットの1つは、コアに何らかのエラーがあり、core_preprodのエラーです。私はそれぞれに何が間違っているのだろうと思っています。 Node01に2つのエラーが表示されていますが、それらは関連していると思われます。ログから、JavaクラスをロードするNullPointerExceptionがスローされ、InvalidSyntaxExceptionがあることがわかります。私は2つのjarファイルを見て、構文エラーを探します。 Javaに慣れていない場合は、開発チームの誰かに見てみてください。 –