JBoss access.log
RojerChen.2016.08.23
沒有想到 JBoss 預設沒有支援產出 access.log,還好有找到 來源文章 照著設定才能夠產出 log檔案出來。
以下為 standalone.xml 的設定
<subsystem xmlns="urn:jboss:domain:web:1.1" default-virtual-server="default-host" native="false"> <connector name="http" protocol="HTTP/1.1" scheme="http" socket-binding="http"/> <virtual-server name="default-host" enable-welcome-root="true"> <alias name="localhost"/> <alias name="example.com"/> <access-log pattern="%a %t %H %p %U %s %S %T" rotate="true"> <directory path="." relative-to="jboss.server.log.dir"/> </access-log> </virtual-server> </subsystem>
相關的參數請參考 JBoss 網站。
0 意見:
張貼留言