Red Hat Enterprise Linux Server release 6.5 (Santiago)のバックアップをWindows Storage Server 2012の共有フォルダに取ることになったのでautofsで自動マウントできるようにしてみました
/etc/auto.masterファイルが無いのでautofsがインストールされていませんでした
1 2 |
[root@host01 ~]# rpm -qa | grep autofs [root@host01 ~]# |
サブスクリプション登録されていないのでyum一発でって訳にはいかなくてインストール用DVDからrpmパッケージをインストールしました
- autofsインストール
- hesiodインストール
- /etc/auto.masterの編集
- /etc/auto.cifsの作成
- autofsの自動起動
- autofs起動
- マウント確認
- autofsのdebug情報出力設定
- messages確認
- cifs-utilsのインストール
依存関係でエラーになりました
1 2 3 4 |
[root@host01 Packages]# rpm -ivh autofs-5.0.5-88.el6.x86_64.rpm 警告: autofs-5.0.5-88.el6.x86_64.rpm: ヘッダ V3 RSA/SHA256 Signature, key ID fd431d51: NOKEY エラー: 依存性の欠如: libhesiod.so.0()(64bit) は autofs-1:5.0.5-88.el6.x86_64 に必要とされています |
依存関係でエラーになったプログラムをインストールし、再度autofsをインストールます
1 2 3 4 5 6 7 8 |
[root@host01 Packages]# rpm -ivh hesiod-3.1.0-19.el6.x86_64.rpm 警告: hesiod-3.1.0-19.el6.x86_64.rpm: ヘッダ V3 RSA/SHA256 Signature, key ID fd431d51: NOKEY 準備中... ########################################### [100%] 1:hesiod ########################################### [100%] [root@host01 Packages]# rpm -ivh autofs-5.0.5-88.el6.x86_64.rpm 警告: autofs-5.0.5-88.el6.x86_64.rpm: ヘッダ V3 RSA/SHA256 Signature, key ID fd431d51: NOKEY 準備中... ########################################### [100%] 1:autofs ########################################### [100%] |
1 2 3 4 5 6 7 8 9 |
[root@host01 ~]$ vi /etc/auto.master [root@host01 ~]$ cat /etc/auto.master # # Sample auto.master file # This is an automounter map and it has the following format # key [ -mount-options-separated-by-comma ] location # For details of the format look at autofs(5). # /backup /etc/auto.cifs --timeout 60 |
1 2 3 |
[root@host01 ~]$ vi /etc/auto.cifs [root@host01 ~]$ cat /etc/auto.cifs host01 -fstype=cifs,rw,nosuid,username=administrator,password=adminPass ://192.168.1.230/backup/host01 |
1 |
[root@host01 ~]# chkconfig autofs on |
1 2 3 |
[root@host01 ~]# /etc/init.d/autofs start Loading autofs4: [ OK ] automount を起動中: [ OK ] |
応答がありません
1 2 3 |
[root@host01 Packages]# ls /backup/host01 ^C ls: cannot access /backup/host01: システムコール割り込み |
1 2 3 4 5 |
[root@host01 ~]# vi /etc/sysconfig/autofs # LOGGING - set default log level "none", "verbose" or "debug" # #LOGGING="none" LOGGING="debug" |
1 |
Jan 10 15:34:38 host01 automount[1340]: >> mount: //192.168.1.230/backup/host01 は正常なブロックデバイスではありません |
調べるとcifs-utilsが必要そうなのでパッケージからインストール
1 2 3 4 |
[root@host01 Packages]# rpm -ivh cifs-utils-4.8.1-19.el6.x86_64.rpm 警告: cifs-utils-4.8.1-19.el6.x86_64.rpm: ヘッダ V3 RSA/SHA256 Signature, key ID fd431d51: NOKEY 準備中... ########################################### [100%] 1:cifs-utils ########################################### [100%] |
無事にWindows共有フォルダがマウントされてファイルの作成、削除ができました
1 2 |
[root@host01 ~]# ls -l /backup/host01 合計 0 |