Ubuntu apach2 因为路径的一个组成部分缺少搜索权限
Ubuntu apach2 because search permissions are missing on a component of the path
“因为路径的一个组成部分缺少搜索权限”
似乎是一个不时发生的问题。到目前为止,这里没有建议的解决方案有效,所以我不得不再次询问如果出现上述错误我可以检查什么。
namei --modes ./index.html
f: ./index.html
drwxr-sr-x .
-rw-r--r-- index.html
在 Ubuntu 20.04
644
权限可能导致此问题。将它们设置为 755
,如有必要,重新启动 Apache:
sudo chmod 755 /path/to/source
sudo service apache2 restart
这应该可以解决问题。
“因为路径的一个组成部分缺少搜索权限” 似乎是一个不时发生的问题。到目前为止,这里没有建议的解决方案有效,所以我不得不再次询问如果出现上述错误我可以检查什么。
namei --modes ./index.html
f: ./index.html
drwxr-sr-x .
-rw-r--r-- index.html
在 Ubuntu 20.04
644
权限可能导致此问题。将它们设置为 755
,如有必要,重新启动 Apache:
sudo chmod 755 /path/to/source
sudo service apache2 restart
这应该可以解决问题。