Restart SSL Channels

post

/management/weblogic/{version}/serverRuntime/restartSSLChannels

Restart all SSL channels on which the server is listening. This could be necessary because of some change that the server is not aware of, for instance updates to the keystore.

Request

Path Parameters
Header Parameters
  • The 'X-Requested-By' header is used to protect against Cross-Site Request Forgery (CSRF) attacks. The value is an arbitrary name such as 'MyClient'.
Security
  • Type: basic
    Description: A user in the Admin security role.
Back to Top

Response

200 Response

Returns the following fields:

Back to Top

Examples

Invoke the restartSSLChannels action.

This example uses the POST method to invoke the restartSSLChannels action.

Example Request
curl -v \
--user admin:admin123 \
-H X-Requested-By:MyClient \
-H Accept:application/json \
-H Content-Type:application/json \
-d "{}" \
-X POST http://localhost:7001/management/weblogic/latest/serverRuntime/restartSSLChannels
Example Response
HTTP/1.1 200 OK

Response Body:
{}
Back to Top