2014-06-28 27 views
5

Mac'imde Tomcat sunucusunu kurarım. Varsayılan bağlantı noktası 8080 ile, tomcat sunucusu iyi başlatıldı. i 9999 bağlantı noktasını değiştirdi Ama, aşağıda hatayıTomcat Kurulumu Bağlantı noktasını değiştirirken hata oluştu

org.apache.tomcat.util.digester.Digester fatalError 
SEVERE: Parse Fatal Error at line 70 column 21: Open quote is expected for attribute "{1}" associated with an element type "port". 
org.xml.sax.SAXParseException: Open quote is expected for attribute "{1}" associated with an element type "port". 
    at com.sun.org.apache.xerces.internal.util.ErrorHandlerWrapper.createSAXParseException(ErrorHandlerWrapper.java:195) 

olsun Aşağıda benim server.xml dosyası

<!-- A "Connector" represents an endpoint by which requests are received 
     and responses are returned. Documentation at : 
     Java HTTP Connector: /docs/config/http.html (blocking & non-blocking) 
     Java AJP Connector: /docs/config/ajp.html 
     APR (HTTP/AJP) Connector: /docs/apr.html 
     Define a non-SSL HTTP/1.1 Connector on port 8080 
    --> 
    <Connector port=“9999” protocol="HTTP/1.1" 
       connectionTimeout="20000" 
       redirectPort="8443" /> 
    <!-- A "Connector" using the shared thread pool--> 
    <!-- 
    <Connector executor="tomcatThreadPool" 
       port="8080" protocol="HTTP/1.1" 
       connectionTimeout="20000" 
       redirectPort="8443" /> 
    --> 
    <!-- Define a SSL HTTP/1.1 Connector on port 8443 
     This connector uses the BIO implementation that requires the JSSE 
     style configuration. When using the APR/native implementation, the 
     OpenSSL style configuration is required as described in the APR/native 
     documentation --> 
    <!-- 
    <Connector port="8443" protocol="org.apache.coyote.http11.Http11Protocol" 
       maxThreads="150" SSLEnabled="true" scheme="https" secure="true" 
       clientAuth="false" sslProtocol="TLS" /> 
    --> 

Kullanım erkek kedi

./catalina çalıştırmak için aşağıdaki komuttur. sh run

cevap

6

Bu kolay ... lütfen bu dosyayı sadece Not Defteri'nde açın. Kullanmış olduğunuz fiyat teklifi ile Tomcat'in beklediği fiyat arasında fark vardır. o ne istiyorsa

bu port="9999" Ve alıntı farkı bakınız farklı bir alıntı port=“9999” kullandı.

+0

SAX ayrıştırıcısını bir Özel Durum atar, böylece iki tırnakların ASCII değerinde bir fark vardır. Bu, bir Gelişmiş Metin Düzenleyicisi'nde Servers.xml dosyasını açtığı için oldu. Bu yüzden Metin editörü Fantezi görünümlü bir alıntı ekleyin. Ya da sadece doğru alıntıyı cevabımdan yapıştırın. – Oliver

+0

Sadece kopyaya doğru alıntıyı cevapla yapıştırın. – Oliver

İlgili konular