環境
- CentOS7
- Sambaを使用したファイルサーバ
対処法
###1./etc/samba/smb.conf
の[global]に以下の設定を追加する
vi /etc/samba/smb.conf
で編集する。
/etc/samba/smb.conf
[global]
...
dfree cache time = 60
...
###2.firewalldに80/tcp(http)ポートの開放設定を追加する
以下コマンドを実行する
# firewall-cmd --add-service=http
以下実行し、httpがservicesに追加されていることを確認する。
# firewall-cmd --list-all
...
services: dhcpv6-client http samba ssh
...