WebLogic 12c - Destination unreachable exception

杀马特。学长 韩版系。学妹 提交于 2019-12-05 09:14:14

No available router to destination -- Means you do not have a service running to listen on localhost:9991

Go to admin console, check the servers which should be listening on 9991 is up and running. I am sure it is not running.

a few possibilities

  1. Not listening - check with netstat
  2. No tunneling - check Summary of Servers -> Configure server (admin) -> Protocols tab -> HTTP sub tab-> Enable Tunneling
  3. JDeveloper does not trust the SSL certificate - check root CA e.g.

    $ cd /oracle/Middleware-12.2.1.2/oracle_common

    $ jdk/bin/keytool -import -v -file ca.crt -storepass changeit -keystore jdk/jre/lib/security/cacerts -alias MyCA

oracle's blog points that you have to enable tunneling:

access the administration console, click servers-> server you want to reach-> protocols -> http -> enable Tunneling.

Huseyin Burhan

Follow these steps (Must be done on Admin only):

  1. Login to Weblogic Console
  2. Click Lock and Edit
  3. Go to Servers
  4. Go to Admin
  5. Go to protocols
  6. Go to HTTP
  7. Scroll down and click on Enable Tunneling
  8. Save
  9. Activate (No restart needed)

I had a similar issue with my Weblogic server while building with maven

If you're using maven, make sure in your maven settings.xml file, the value for: <weblogic.admin.url></weblogic.admin.url> is the same what you have for listen-address></listen-address> your weblogic config.xml

My problem was that my settings.xml had my local IP address where as weblogic config.xml had localhost.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!