jboss-7 を使用していますが、ポート番号を 8080 から 7001 に変更したいと考えています。どのファイルを変更する必要がありますか?
9 に答える
ファイルは$JBOSS_HOME/standalone/configuration/standalone.xml
. 見つけ<socket-binding-group>
て<socket-binding>
そこに。
編集
これを行うには複数の方法があります。推奨される方法は、管理コンソールを使用することです。JBoss AS がローカル コンピューターで実行されている場合は、URL を開き、http://localhost:9990/console/App.html#socket-bindings
そこでソケット バインディングを編集します。Wildfly 8.1.0 Final でテストしましたが、URL が JBoss AS の他のバージョンで有効かどうかはわかりません。
使用開始時
./standalone.sh -b 0.0.0.0 -Djboss.socket.binding.port-offset=1000 &
- Linux の場合
standalone.bat -Djboss.socket.binding.port-offset=1000
- ウィンドウズ
here 1000 is the offset value. 8080 + 1000 = 9080 the application will start
Change the socket-binding of http to your desire port number you want to use inside the socket-binding-group in your standalone.xml file of jboss.For example i am using 8090 as my port number.
<socket-binding name="http" port="8090"/>
Windows の場合:
スタンドアロン.bat
使っている
スタンドアロン.conf.bat
メモ帳で開く
最後の 2 行を追加します (以下に示すように、2 つの「Alter Port Settings Offset」行とも呼ばれます) (最初の 3 行は既に存在している必要があります...必要な 2 つの新しい行を配置する場所へのパンくずリストを提供します)。
rem # Make Byteman classes visible in all module loaders
rem # This is necessary to inject Byteman rules into AS7 deployments
set "JAVA_OPTS=%JAVA_OPTS% -Djboss.modules.system.pkgs=org.jboss.byteman"
REM NEW LINE HERE Alter Port Settings Offset
set "JAVA_OPTS=%JAVA_OPTS% -Djboss.socket.binding.port-offset=1000"