Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to make a rollback due a deploy failed, my server code is on java, and also i'm using App Engine Eclipse PlugIn for. my appcfg.sh file is located at /Applications/eclipse/plugins/com.google.appengine.eclipse.sdkbundle_1.7.5/appengine-java-sdk-1.7.5/bin/appcfg.sh


but i get "Command not Found" when i try this sudo /Applications/eclipse/plugins/com.google.appengine.eclipse.sdkbundle_1.7.5/appengine-java-sdk-1.7.5/bin/appcfg.sh rollback /Documents/workspace/server_side/war

I can't realize what's wrong. i don`t know if is the right appcfg, because there is appcfg.cmd and appcfg.sh, i'm using an imac(Unix enviro) so i use the appcfg.sh to made the rollback. i've tried in several different ways. and nothing good happen. maybe i'm missing something. thanks!

share|improve this question
What happens when you run /Applications/eclipse/plugins/com.google.appengine.eclipse.sdkbundle_1.7.5/appe‌​ngine-java-sdk-1.7.5/bin/appcfg.sh without any arguments? – R Samuel Klatchko Feb 26 at 22:26
Nothing, just says command not found. like this sudo: /Applications/eclipse/plugins/com.google.appengine.eclipse.sdkbundle_1.7.5/appen‌​gine-java-sdk-1.7.5/bin/appcfg.sh: command not found – AlexSanchez Feb 27 at 1:11

1 Answer

up vote 2 down vote accepted

It does not have execute permission by default:

-rw-r--r--  1 yorkw  staff   558 11 Dec 06:01 appcfg.sh

Run chmod 755 appcfg.sh to change the permission:

-rwxr-xr-x  1 yorkw  staff   558 11 Dec 06:01 appcfg.sh

Then you should be able to run it in terminal.

share|improve this answer
Hi @yorkw, I've typed chmod 755 appcfg.sh, the issue still happen. it says -bash: appcfg: command not found when i try to rollback. – AlexSanchez Feb 27 at 20:02
type cd /Applications/eclipse/plugins/com.google.appengine.eclipse.sdkbundle_1.7.5/appen‌​gine-java-sdk-1.7.5/bin/, then type chmod 755 appcfg.sh. – yorkw Feb 27 at 20:09
i'm executing the chmod command right there. – AlexSanchez Feb 27 at 20:17
this is the output: total 64 -rw-r--r-- 1 useami03 staff 286 Feb 5 12:18 appcfg.cmd -rwxr-xr-x 1 useami03 staff 558 Feb 5 12:18 appcfg.sh -rw-r--r-- 1 useami03 staff 368 Feb 5 12:18 dev_appserver.cmd -rw-r--r-- 1 useami03 staff 636 Feb 5 12:18 dev_appserver.sh -rw-r--r-- 1 useami03 staff 940 Feb 5 12:18 endpoints.cmd -rw-r--r-- 1 useami03 staff 1100 Feb 5 12:18 endpoints.sh -rw-r--r-- 1 useami03 staff 196 Feb 5 12:18 google_sql.cmd -rw-r--r-- 1 useami03 staff 479 Feb 5 12:18 google_sql.sh – AlexSanchez Feb 27 at 20:23
1  
@AlexSanchez, if you are in that directory, try ./appcfg.sh. – yorkw Feb 27 at 20:25
show 3 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.