Reputation: 2106
My application hang up. Because of that I wanted to delete the application but it's not possible. OpenShift just shows me: "Unable to perform action on app object. Another operation is already running" when I want to delete the application from the web interface.
Unable to perform action on app object. Another operation is already running.
When I check the status of my application then it is unknown. It shows "unknown" for my Tomcat server and also for my database server.
What can I do now to get my app back to live?
Upvotes: 2
Views: 194
Reputation: 54782
It looks like your error is caused by intermittent API failures on OpenShift, so there is nothing that you can do (except you work for OpenShift).
You can check the OpenShift Online Status Page to see whether the API errors are still present. To receive the latest status updates you can also follow OpenShift Operations on Twitter or join this IRC Channel: #openshift
on irc.freenode.net
.
I think the problem will be resolved quickly.
Upvotes: 2
Reputation: 3813
This may be caused by Tomcat running out of memory. Try rhc app force-stop -a [your_app]
in the rhc command line tools. This should kill all running threads in your app even if it's out of memory. Then, if you want to restart the app, use rhc app start
.
Source: https://help.openshift.com/hc/en-us/articles/202399040-How-to-restart-an-application-
Upvotes: 1