【障害集合】アーキテクチャフェーズバックアップサービス-ストレージサービスエラー集合

5775 ワード

エラー全体レコード


Rsync
1.not a regular file 2.remote command not found 3.Connection Refuse 4.auth failed on module data 5.secrets file 6.Unknown module 'data' 7.read error: Connection reset by peer 8.password file must not be other-accessible 9.Unknown module 'data'
NFS
access denied by server while mounting 10.0.0.31:/data Job for nfs-server.service invalid. wrong fs type, bad option, bad superblock on No route to host

エラー詳細


rsyncサービス


1.not a regular fileは通常のファイルではありません


scpのデフォルトでは、cpと同様に通常のファイルに-rを追加するだけです.
[root@backup ~]# scp /etc/  172.16.1.31:/tmp
[email protected]'s password: 
/etc: not a regular file

2.remote command not found


リモートサーバにこのコマンドがないリモートサーバにrsyncがインストールされているかどうかを確認します.yumがインストールされていないかどうかを確認します.
[root@backup ~]# rsync -av /etc 172.16.1.31:/tmp
[email protected]'s password: 
bash: rsync: command not found
rsync: connection unexpectedly closed (0 bytes received so far) [sender]
rsync error: remote command not found (code 127) at io.c(226) [sender=3.1.2]

3.Connection refused


接続拒否チェック対応サーバにpingが通じるかどうか
  [root@backup ~]# rsync -avz /etc 176.16.1.31:/tmp
ssh: connect to host 176.16.1.31 port 22: Connection refused
rsync: connection unexpectedly closed (0 bytes received so far) [sender]
rsync error: unexplained error (code 255) at io.c(226) [sender=3.1.2]

4. auth failed on module data


dataモジュール認証エラー(パスワード)
理由:1.パスワードを書き間違えました.パスワードファイルは存在しません.パスワードファイルの権限が間違っています
[root@backup log]# rsync -avz /etc/hosts [email protected]::data
Password: 
@ERROR: auth failed on module data
rsync error: error starting client-server protocol (code 5) at main.c(1648) [sender=3.1.2]

5. secrets file


ログ内のパスワードファイルの問題ログを表示するヒント:
019/05/20 16:52:32 [15755] secrets file must be owned by root when running as root (see strict modes)
2019/05/20 16:52:32 [15755] auth failed on module data from backup (172.16.1.41) for rsync_backup: ignoring secrets file
 secrets file must be owned by root when running as root (see strict modes)

パスワードファイルrootがrsyncを実行する場合はrootに属する必要があります
 [root@backup ~]# ll /etc/rsync.password 
-rw------- 1 rsync rsync 20 May 20 16:49 /etc/rsync.password

6.Unknown module 'data'


不明なモジュール
[root@backup ~]# rsync -avz /etc/hosts [email protected]::data
@ERROR: Unknown module 'data'
rsync error: error starting client-server protocol (code 5) at main.c(1648) [sender=3.1.2]

7.read error: Connection reset by peer


プロファイルエラー
[root@backup ~]# rsync -avz /etc/hosts [email protected]::data
sending incremental file list
rsync: read error: Connection reset by peer (104)
rsync error: error in socket IO (code 10) at io.c(785) [sender=3.1.2]

8. password file must not be other-accessible

rsync -avz /etc/sysconfig/ [email protected]::backup --password-file=/etc/rsync.password  
ERROR: password file must not be other-accessible
rsync error: syntax or usage error (code 1) at authenticate.c(196) [sender=3.1.2]

9.Unknown module 'data'


@ERROR: Unknown module 'data'
2019/05/20 17:45:46 [10514] rsync denied on module data from UNKNOWN (10.0.0.31)

10. Name or service not known


[root@nfs01 ~]# rsync -avz/etc/hostname rsync_backup@backup::backup rsync: getaddrinfo: backup 873: Name or service not known rsync error: error in socket IO (code 10) at clientserver.c(125) [sender=3.1.2]

11.password mismatch


サービス側が設定したパスワードとクライアントが異なるチェックサービス側(rsyncd.conf secrets fileで指定したファイル名:パスワード)クライアント--password-fileで指定したパスワードファイルをチェック
auth failed on module backup from  (172.16.1.7) for rsync_backup: password mismatch

12. @ERROR: chdir failed


モジュール対応ディレクトリは存在しません
rsync -avz /etc/hostname    [email protected]::nfsbackup  --password-file=/etc/rsync.password
@ERROR: chdir failed
rsync error: error starting client-server protocol (code 5) at main.c(1648) [sender=3.1.2]

二.NFS


wrong fs type


間違ったファイルシステムタイプnfsファイルシステムnfs-utilsがインストールされていないことを認識できません
mount -t nfs 172.16.1.31:/data /mnt/
mount: wrong fs type, bad option, bad superblock on 172.16.1.31:/data,
       missing codepage or helper program, or other error
       (for several filesystems (e.g. nfs, cifs) you might
       need a /sbin/mount. helper program)
       In some cases useful info is found in syslog - try
       dmesg | tail  or so

No route to host


ルートがなくて、道が通じません.
ping ipファイアウォールオープン
[root@nfs01 ~]# rpcinfo -p 172.16.0.31
rpcinfo: can't contact portmapper: RPC: Remote system error - No route to host

access denied by server while mounting 10.0.0.31:/data


アクセス拒否
セグメント構成エラー
[root@nfs01 ~]# showmount -e 172.16.1.31 
Export list for 172.16.1.31:
/data 172.16.1.0/24
[root@nfs01 ~]# cat /etc/exports
#share /data    to web /upload 
/data     172.16.1.0/24(rw)
[root@nfs01 ~]# mount -t nfs   10.0.0.31:/data    /mnt 
mount.nfs: access denied by server while mounting 10.0.0.31:/data

Job for nfs-server.service invalid.


nfsサービスが起動していないためreloadできません
[root@nfs01 ~]#  systemctl stop nfs 
[root@nfs01 ~]# systemctl reload nfs 
Job for nfs-server.service invalid.