RHEL5中的samba服務器啟動后,能看到共享目錄,但是不能訪問共享目錄,告知權限不夠。此時可以通過如下命令:
tail /var/log/message看到如此提示:
'/home/lyy' does not exist or permission denied when connecting to [lyy] Error was 權限不夠
SELinux is preventing the samba daemon from reading users home directories.For complete SELinux messages. run sealert -l a0c1c154-bc37-44f5-a6eb-cfc88fed18b9
根據提示運行:
sealert -l a0c1c154-bc37-44f5-a6eb-cfc88fed18b9
可看到另外更詳細的提示,再根據提示
Allowing Access
If you want samba to share home directories you need to turn on the
samba_enable_home_dirs boolean: "setsebool -P samba_enable_home_dirs=1"
The following command will allow this access:
setsebool -P samba_enable_home_dirs=1
運行:
setsebool -P samba_enable_home_dirs=1
等運行成功后,就能正常訪問目錄了。-P參數是有效的意思。
注意setsebool放在/usr/sbin中,如果系統提示setsebool命令找不到,加入上述路徑即可。
RHEL5中不用關閉SELinux而成功啟動Samba
更新時間: 2008-06-04 14:45:38來源: 粵嵌教育瀏覽量:1195