Reputation: 328
I'm trying to get a backend instance running on GAE Java but it's not working.
I have read the docs here http://code.google.com/appengine/docs/java/backends/overview.html
These are the steps I have taken:
<backends> <backend name="backend_test"> <class>B1</class> <instances>;2</instances> </backend> </backends>
uploaded app to app engine and checked console. Nothing there.
Used AppCfg command of appcfg.sh backends <PATH-TO-WEB-INF> start <BACKEND-NAME>
I get a problem with step 3 where it says
400 Bad Request
Starting backend: backend_test
Backend 'backend_test' has not been defined.
But i have defined this in the backends.xml file.
Upvotes: 2
Views: 701
Reputation: 101149
You need to upload the backend definition with appcfg.sh backends update
as documented here.
Upvotes: 2