tomcat配置SSL報錯解決:java.lang.IllegalArgumentException: Invalid character (CR or LF) found in method nam__tomcat

來源:互聯網
上載者:User

使用CAS單點登陸時,在tomcat的server.xml中配置了https協議的認證認證,但訪問時報錯:

INFO [http-nio-8443-exec-4] org.apache.coyote.http11.AbstractHttp11Processor.process Error parsing HTTP request header Note: further occurrences of HTTP header parsing errors will be logged at DEBUG level. java.lang.IllegalArgumentException: Invalid character (CR or LF) found in method name    at org.apache.coyote.http11.AbstractNioInputBuffer.parseRequestLine(AbstractNioInputBuffer.java:228)

折騰了很久,搜尋別人的答案大多是因為SSL的配置問題,但我copy了幾個博主的配置始終報錯。

報錯原因是因為我偷了一點點懶。。。。直接copy配置參數,沒有取消掉注釋自己配置,導致配置不完整出錯。

如下server.xml:

 <!-- copy的配置 --> <!-- <Connector port="8443" maxHttpHeaderSize="1048576"      maxThreads="150" minSpareThreads="25" maxSpareThreads="75"         enableLookups="false" disableUploadTimeout="true"         acceptCount="100" scheme="https" secure="true"         clientAuth="false" sslProtocol="TLS" keystoreFile="f:/keys/my.keystore" keystorePass="xz19950122xz"/>  --> <!-- 內建的配置,取消掉注釋,加上keystoreFile和keystorePass --> <Connector port="8443" protocol="org.apache.coyote.http11.Http11NioProtocol"               maxThreads="150" SSLEnabled="true" scheme="https" secure="true"               clientAuth="false" sslProtocol="TLS"               keystoreFile="f:/keys/my.keystore" keystorePass="xz19950122xz"/> 

修改後再次訪問https的8443連接埠,瀏覽器成功跳轉:

您的串連不是私密串連攻擊者可能會試圖從 localhost 竊取您的資訊(例如:密碼、通訊內容或信用卡資訊)。瞭解詳情
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.