歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux基礎 >> Linux基礎知識

RHEL5中不用關閉SELinux而成功啟動Samba

 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命令找不到,加入上述路徑即可。

Copyright © Linux教程網 All Rights Reserved