Error starting Tomcat from NetBeans - '127.0.0.1*' is not recognized as an internal or external command

前端 未结 4 1112
伪装坚强ぢ
伪装坚强ぢ 2020-11-28 19:04

Both Google and Stackoverflow have shown me people with similar issues however this error is slightly different in that the IP address is suffixed with an asterisk:

<

相关标签:
4条回答
  • 2020-11-28 19:33

    I didnt try Sumama Waheed's answer but what worked for me was replacing the bin/catalina.jar with a working jar (I disposed of an older tomcat) and after adding in NetBeans, I put the original catalina.jar again.

    0 讨论(0)
  • 2020-11-28 19:34

    Assuming you are on Windows (this bug is caused by the crappy bat files escaping), It is a bug introduced in the latest versions (7.0.56 and 8.0.14) to workaround another bug. Try to remove the " around the JAVA_OPTS declaration in catalina.bat. It fixed it for me with Tomcat 7.0.56 yesterday.

    In 7.0.56 in bin/catalina.bat:179 and 184

    :noJuliConfig
    set "JAVA_OPTS=%JAVA_OPTS% %LOGGING_CONFIG%"
    
    ..
    
    :noJuliManager
    set "JAVA_OPTS=%JAVA_OPTS% %LOGGING_MANAGER%"
    

    to

    :noJuliConfig
    set JAVA_OPTS=%JAVA_OPTS% %LOGGING_CONFIG%
    
    .. 
    
    :noJuliManager
    set JAVA_OPTS=%JAVA_OPTS% %LOGGING_MANAGER%
    

    For your asterisk, it might only be a configuration of yours somewhere that appends it to the host declaration.

    I saw this on Tomcat's bugtracker yesterday but I can't find the link again. Edit Found it! https://issues.apache.org/bugzilla/show_bug.cgi?id=56895

    I hope it fixes your problem.

    0 讨论(0)
  • 2020-11-28 19:36

    After following the steps from @Johnride, I still got the same error.

    This fixed the problem:

    Tools-> Options-> Select no proxy

    source: https://www.youtube.com/watch?v=uI1j-8F8eN4

    0 讨论(0)
  • 2020-11-28 19:42

    Tools-> Options-> Select no proxy is worked for me

    0 讨论(0)
提交回复
热议问题