Update and rename 41.4. Customizing the management server address to 41.4. Customizing the management server address.md

master
qibaoguang 2015-03-02 23:37:32 +08:00
parent f14f9d5f35
commit b5eeffda1d
2 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
### 41.4. 自定义管理服务器的地址
你可以通过设置`management.address`属性来定义管理端点可以使用的地址。这在你只想监听内部或面向生产环境的网络或只监听来自localhost的连接时非常有用。
下面的application.properties示例不允许远程管理连接
```java
management.port=8081
management.address=127.0.0.1
```