vladgh / VladGh.com-LEMP

Latest NginX, MySQL, PHP (with APC and Suhosin)
http://vladgh.com/blog/install-nginx-and-php-php-fpm-mysql-and-apc
Apache License 2.0
160 stars 41 forks source link

Some erros while installing #41

Closed JCJeff closed 11 years ago

JCJeff commented 11 years ago

Please check this log file: http://limelinx.com/c49xm

I'm on Ubuntu 12.10 64x | PyGrub VPS

vladgh commented 11 years ago

This script relies on bash, and given your "unexpected operator" errors, I believe that you have something else installed on your system (zsh, dash, etc). The shebang line of install.sh points directly to /bin/bash, but in your case that's probably just a symlink to something else. You should first check if this is true. You could also locate manually the bash executable and force the script to run with it: /path/bash install.sh.

JCJeff commented 11 years ago

Ok thanks.