Stop the Eclipse Amlen server
Purpose
Stops the Eclipse Amlen server process.URI
Use the Eclipse Amlen REST API POST method with the following Eclipse Amlen service URI:
http://<admin-endpoint-IP:port>/ima/v1/service/stop
Object configuration data
Provide object configuration data in the payload of the POST method by using one of the following schemas. Content-type is set to application/json:
{"Service":"Server"}
Usage NotesĀ®
- Stopping the Eclipse Amlen server process terminates all client connections and stops the messaging system. It is advisable to use this command only for maintenance purposes.
Related REST Administration APIs
Example
Stops the Eclipse Amlen server process:
curl -X POST \
-H 'Content-Type: application/json' \
-d '{
"Service": "Server"
}
' \
http://127.0.0.1:9089/ima/v1/service/stop