[root@localhost native]# ./configure --with-apr=/usr/bin/apr-1-config-bash: ./configure: Permission denied
权限不够,明明是root用户仍然有这种提示。
如果你改为执行
# bash ./configure
那么就没有这个问题了,那为什么会出现这个问题呢?那是因为那个configure文件非可执行文件的原因,当你在当前目录下执行
# chmod +x ./configure
即为当前目录下的configure文件添加可执行性之后你就可以通过直接
的方式来安装了。也就是说解决这个错误的办法是先执行# ./configure
亦或者你加个“bash”也行:# chmod +x ./configure
#bash ./configure