linux自动巡检脚本之用户切换后的命令执行

linux自动巡检脚本之用户切换后的命令执行,第1张

权限不够

1、你看下你的脚本有没有读和执行的权限,用一下命令查看:

ls -trl /home/aaaaa/test.sh

看看出来的 -rw-r--r--. 1 root root 28757 12月 12 09:28 install.log 具体是什么

就像我上卖弄读取出来的这个 install.log 文件一样,他的权限是 对root用户 有读和修改的权限,对root用户组只有 读 的权限,对其他用户也只有读的权限,那么这个时候 你用其他用户执行,肯定执行不了;

2、看看切换的用户有没有读和执行该脚本的权限;

关于权限这边说就太了多了,如果不懂的话建议自己下去看看;

有个最简单的方法 直接 chmod 777 aaaa.sh 给予aaaa.sh这个脚本所有权限,然后再切换用户后,就可以直接执行了 bash aaaa.sh

1、最强大的搜索命令:find 查找各种文件的命令  2、在文件资料中查找文件:locate 3、搜索命令所在的目录及别名信息:which  4、搜索命令所在的目录及帮助文档路径:whereis 5、在文件中搜寻字符串匹配的行并输出:grep 6、分页显示一个文件或任何输出结果:more 7、分页显示一个文件并且可以回头:less 8、指定显示前多少行文件内容:head 9、指定显示文件后多少行内容:tail 10、查看一个文件:cat 11、查看文件内容多少字符多少行多少字节:wc 12、排序文件内容:sort 一、根据 文件或目录名称 搜索 find 【搜索目录】【-name或者-iname】【搜索字符】:-name和-iname的区别一个区分大小写,一个不区分大小写 eg:在/etc 目录下搜索名字为init的文件或目录 ①、find /etc -name init (精准搜索,名字必须为 init 才能搜索的到) ②、find /etc -iname init (精准搜索,名字必须为 init或者有字母大写也能搜索的到) ③、find /etc -name *init (模糊搜索,以 init 结尾的文件或目录名) ④、find /etc -name init??? (模糊搜索,? 表示单个字符,即搜索到 init___) 二、根据 文件大小 搜索 eg:在根目录下查找大于 100M 的文件 find / -size +204800 这里 +n 表示大于,-n 表示小于,n 表示等于 1 数据块 == 512 字节 0.5KB,也就是1KB等于2数据块 100MB == 102400KB204800数据块 三、根据 所有者和所属组 搜索 ①、在home目录下查询所属组为 root 的文件 find /home -group root ②、在home目录下查询所有者为 root 的文件 find /home -user root 四、根据 时间属性 搜索 find 【路径】【选项】【时间】 选项有下面三种:-amin 访问时间-cmin 文件属性被更改-mmin 文件内容被修改 时间:+n,-n,n分别表示超过n分钟,n分钟以内和n分钟 eg:在 /etc 目录下查找5 分钟内被修改过属性的文件和目录 find /etc -cmin -5 五、根据 文件类型或i节点 搜索  -type 根据文件类型查找:  f表示文件,d表示目录,l表示软链接 eg:查找 /home 目录下文件类型是目录的 find /home -type d -inum 根据i节点查找 eg:查找 /tmp 目录下i节点为400342的文件或目录   find /tmp -inum 400342 六、组合条件 搜索 这里有两个参数: ①、-a 表示两个条件同时满足(and) ②、-o 表示两个条件满足任意一个即可(or) 范例:查找/etc目录下大于80MB同时小于100MB的文件 find /etc -size +163840 -a -size -204800 语法:locate【文件名】 -i 不区分大小写 注意:这里和 find 命令是有区别的,find是全盘检索,而locate 是在文件资料库中进行搜索。所以locate命令的执行要比find命令执行速度快很多。但是这里有个问题,文件资料库是需要不断更新的。我们新创建的文件如果不更新 文件资料库,使用 locate 是查找不到的。 updatedb 手动更新资料库,但是对于/tmp目录下的新建文件,是更新不到文件资料库的,因为/tmp目录不属于文件资料库的收录范围。 eg:locate hcf 功能描述:搜索命令所在的目录及别名信息  语法:which【命令】  eg:which ls 功能描述:搜索命令所在的目录及帮助文档路径  语法:whereis【命令】  eg:whereis ls 功能描述:在文件中搜寻字符串匹配的行并输出  语法:grep -iv 【指定字符串】【文件】 -i 不区分大小写 -v 排除指定字符串  eg:查找 /root/install.log 文件中包含 mysql 字符串的行,并输出 grep mysql /root/install.log 本搜索工具,根据用户指定的模式,对目标文件逐行进行匹配检查,打印匹配到的行 grep是在文件中搜索匹配的字符串,是在文件中进行内容搜索,这个命令后面用到的比较多 描述: 分页显示一个文件或任何输出结果 用于查看纯文本文件(较长的)格式 格式: more[选项] 文件 less 与 more 类似,但使用 less 可以随意浏览文件,而 more 仅能向前移动,却不能向后移动,而且 less 在查看之前不会加载整个文件。 head[必要参数][选择参数][文件] 用于显示指定文件开始多少行内容 命令参数: -n 10 显示前10行 -n -10 正常输出但不显示最后的10行 eg:显示new.txt的前两行内容 head -n 2 new.txt head -2 new.txt tail[必要参数][选择参数][文件] 用于显示指定文件末尾多少行内容 命令参数: -n 10 显示后面10行 -f 持续刷新显示的内容 eg:显示new.txt的末尾两行内容 tail -n 2 new.txt tail -2 new.txt eg:指定从第二行开始显示 tail -n +2 new.txt 描述:一次显示整个文件内容 cat 命令 用于查看纯文本文件(较短)  cat [选项] [文件]… 描述:wc 命令默认情况下会打印换行符数、单词数和字符数。  用法:wc [选项] [文件] 用法:sort [选项] [文件] 转自: Linux下文件搜索、查找、查看命令_黄小小的博客-CSDN博客_linux 搜索

收集NBU软件信息 nbsu_info

C:\Program Files\Veritas\NetBackup\bin\support\nbsu.exe -s DEV_scsi_reg -s NBU_nbdb_info -s

收集进程状态信息 NBU_bpps

C:\Program Files\Veritas\NetBackup\bin\bpps

备份存储单元状态 NBU_bpstulist

C:\Program Files\Veritas\netbackup\bin\admincmd\bpstulist -g -U

磁带使用状态    NBU_available_media

C:\Program Files\Veritas\NetBackup\Bin\goodies\available_media -a

客户端信息      NBU_bpplclients

C:\Program Files\Veritas\NetBackup\Bin\admincmd\bpplclients -allunique -U

备份作业检查    NBU_backup_status

C:\Program Files\Veritas\NetBackup\Bin\admincmd\bperror -U -backstat

linux下巡检命令

[root@nbuserver ~]# /usr/openv/netbackup/bin/bpps -a

[root@nbuserver ~]# /usr/openv/netbackup/bin/admincmd/bpstulist -L

[root@nbuserver ~]# /usr/openv/netbackup/bin/admincmd/bpplclients -allunique -U

[root@nbuserver ~]# /usr/openv/netbackup/bin/admincmd/bpdbjobs -L

[root@nbuserver ~]# /usr/openv/netbackup/bin/admincmd/bperror -backstat -hoursago 72 –L

日志文件收集执行命令  /usr/openv/netbackup/bin/support/nbsu -c -t

启动NetBackup图形界面

/usr/openv/netbackup/bin/jnbSA &

可做alias如下所示

oracle@nbumaster:~>cat /etc/bash.bashrc | grep ^alias

alias nbu='/usr/openv/netbackup/bin/jnbSA &'

NetBackup故障后,日志收集

nbumaster:~ # /usr/openv/netbackup/bin/support/nbsu

日志存放点:/usr/openv/netbackup/bin/support/output/nbsu

以及收集如下日志:

3. Display NetBackup status and troubleshooting information or entries from NetBackup error catalog

Unix/Linux

/usr/openv/netbackup/bin/admincmd/bperror -all -hoursago 72 -verbose -U >/tmp/bperror_all.txt

/usr/openv/netbackup/bin/admincmd/bperror -backstat -hoursago 72 -verbose -U >/tmp/bperror_backstat.txt

/usr/openv/netbackup/bin/admincmd/bperror -problems -hoursago 72 -verbose -U >/tmp/bperror_problems.txt

/usr/openv/netbackup/bin/admincmd/bperror -media -hoursago 72 -verbose -U >/tmp/bperror_media.txt

/usr/openv/netbackup/bin/admincmd/bperror -tape -hoursago 72 -verbose -U >/tmp/bperror_tape.txt

3、磁带立即过期

nbumaster:~ # /usr/openv/netbackup/bin/admincmd/bpexpdate -m media_id -d 0

4、查看所有磁带使用情况,条形码为media id

nbumaster:~ # /usr/openv/netbackup/bin/goodies/available_media

5、查看磁带过期时间

nbumaster:~ # /usr/openv/netbackup/bin/admincmd/bpmedialist -U

6、查看nbu的版本

nbumaster:~ # cat /usr/openv/netbackup/version

HARDWARE LINUX_SUSE_X86

VERSION NetBackup 7.0.0

RELEASEDATE Thu Jul 08 01:22:07 CDT 2010

BUILDNUMBER 20100707

nbumaster:~ # more /usr/openv/netbackup/bin/version

NetBackup-SuSE2.6.16 7.0.1

7、查看驱动器的状态,是否处于正常的TLD状态还是ACTIVE,或者不正常的AVR状态

nbumaster:~ # /usr/openv/volmgr/bin/vmoprcmd

8、查看驱动器是否需要清洗

nbumaster:~ # /usr/openv/volmgr/bin/tpclean -L

Drive Name              Type      Mount Time  Frequency  Last Cleaned        Comment

**********              ****      **********  *********  ****************    *******

HP.ULTRIUM4-SCSI.000    hcart*    4231.6      0                N/A            NEEDS CLEANING

HP.ULTRIUM4-SCSI.001    hcart*    798.4      0                N/A            NEEDS CLEANING

HP.ULTRIUM4-SCSI.002    hcart*    645.0      0                N/A            NEEDS CLEANING

HP.ULTRIUM4-SCSI.003    hcart*    642.3      0                N/A            NEEDS CLEANING

HP.ULTRIUM4-SCSI.004    hcart*    2340.8      0                N/A            NEEDS CLEANING

HP.ULTRIUM4-SCSI.005    hcart*    646.2      0                N/A            NEEDS CLEANING

HP.ULTRIUM4-SCSI.006    hcart*    14.9        0                N/A

HP.ULTRIUM4-SCSI.007    hcart*    17.4        0                N/A

HP.ULTRIUM4-SCSI.008    hcart*    10.0        0                N/A

HP.ULTRIUM4-SCSI.009    hcart*    22.1        0                N/A

9、扫描本机所有的机械手和驱动器

nbumaster:~ #/usr/openv/volmgr/bin/scan

************************************************************

*********************** SDT_TAPE    ************************

*********************** SDT_CHANGER ************************

************************************************************

------------------------------------------------------------

Device Name  : "/dev/sg30"  //机械手

Passthru Name: "/dev/sg30"

Volume Header: ""

Port: -1Bus: -1Target: -1LUN: -1

Inquiry    : "ADIC    Scalar i2000    650Q"

Vendor ID  : "ADIC    "

Product ID : "Scalar i2000    "

Product Rev: "650Q"

Serial Number: "ADIC273100135_LL0"

WWN          : ""

WWN Id Type  : 0

Device Identifier: "ADIC    273100135_LL0          "

Device Type    : SDT_CHANGER  //机械手

NetBackup Robot Type: 8

Removable      : Yes

Device Supports: SCSI-3

Number of Drives : 10

Number of Slots  : 684

Number of Media Access Ports: 24  //10个驱动器

Drive 1 Serial Number      : "HU10159TD2"

Drive 2 Serial Number      : "HU10109851"

Drive 3 Serial Number      : "HU10159TC8"

Drive 4 Serial Number      : "HU10038GVG"

Drive 5 Serial Number      : "HU10109839"

Drive 6 Serial Number      : "HU101098DU"

Drive 7 Serial Number      : "HU10159TCV"

Drive 8 Serial Number      : "HU1010983B"

Drive 9 Serial Number      : "MXP1226LMC"

Drive 10 Serial Number      : "HU10159TAP"

10、手动尝试抓取机械手,可验证机械手是否正常,该 *** 作可在nbu服务未启动时候就可执行

以下表明机械手找不到

nbumaster:/usr/openv/volmgr/misc # /usr/openv/volmgr/bin/robtest

Configured robots with local control supporting test utilities:

  TLD(0)    robotic path = /dev/sg8

Robot Selection

---------------

  1)  TLD 0

  2)  none/quit

Enter choice: 1

Robot selected: TLD(0)  robotic path = /dev/sg8

Invoking robotic test utility:

/usr/openv/volmgr/bin/tldtest -rn 0 -r /dev/sg8

Opening /dev/sg8

Error opening /dev/sg8, No such device or address

Robotic test utility /usr/openv/volmgr/bin/tldtest

returned abnormal exit status (1).

11、查看磁带驱动器及robot(机械手)细节情况

nbumaster:~ # /usr/openv/volmgr/bin/tpconfig -d 亦可使用tpconfig -dl或tpconfig -l,显示的信息是不一样的

Id  DriveName          Type  Residence

      Drive Path                                                      Status

****************************************************************************

0  HP.ULTRIUM4-SCSI.000 hcart  TLD(0)  DRIVE=10

      /dev/nst5                                                        UP

1  HP.ULTRIUM4-SCSI.001 hcart  TLD(0)  DRIVE=9

      /dev/nst6                                                        UP

2  HP.ULTRIUM4-SCSI.002 hcart  TLD(0)  DRIVE=8

      /dev/nst9                                                        UP

Currently defined robotics are:

  TLD(0)    robotic path = /dev/sg30

EMM Server = nbumaster

可使用如下命令查看驱动器和机械手的相关信息

(Display device configuration)

  tpconfig -d

  tpconfig -dl

  tpconfig -l

另/usr/openv/volmgr/bin/tpconfig      提供add ,delete,list NBU可以识别并使用的物理设备,如

机械手/dev/sg30的符号在 *** 作系统更改后,可通过tpconfig来进行更改

12、查看nbu进程情况,一般使用bpps -x

nbumaster:~ # /usr/openv/netbackup/bin/bpps  -列出nbu服务运行的进程

-a  在列表中包括介质管理器进程

-x  在列表中包括介质管理器进程和其他共享进程

13、查看 *** 作系统是否认识到机械手

nbumaster:~ # cat /proc/scsi/scsi  可搜索关键字Medium

Host: scsi1 Channel: 00 Id: 01 Lun: 02

  Vendor: ADIC    Model: Scalar i2000    Rev: 605A

  Type:  Medium Changer                  ANSI SCSI revision: 03

lsscsi和cat /proc/scsi/scsi其实是一样的

nbumaster:~ # lsscsi

[0:0:0:0]    disk    SEAGATE  ST9146803SS      FS62  -

[0:0:1:0]    disk    SEAGATE  ST9146803SS      FS62  -

[0:1:2:0]    disk    LSILOGIC Logical Volume  3000  /dev/sda

[1:0:0:0]    storage QUANTUM  Scalar i6000    650Q  -

[1:0:0:2]    mediumx ADIC    Scalar i2000    650Q  -

14、如何重启nbu服务

正常情况只需要

nbumaster:~ # /usr/openv/netbackup/bin/bp.kill_all

nbumaster:~ # /usr/openv/netbackup/bin/bpps -x

nbumaster:~ # /usr/openv/netbackup/bin/bp.start_all

如果以上重启nbu方式不行,则采用如下方式

How to restart services

On NetBackup Master Server

1) Stop the NetBackup Services.

nbumaster:~ # /usr/openv/netbackup/bin/bp.kill_all

If the NetBackup services did not stop completely,please stop the process by using the kill command.

nbumaster:~ # /usr/openv/netbackup/bin/bpps -x

Remove cache files

nbumaster:~ # cd /usr/openv/var

nbumaster:~ # ls -lh

nbumaster:~ # rm /usr/openv/var/*.ior

nbumaster:~ # rm /usr/openv/var/*.ior.mgr

nbumaster:~ # cd /usr/openv/volmgr/misc 若有lock文件,可删除

nbumaster:~ # ls -lh

2)stop vxpbx services.

nbumaster:~ # /opt/VRTSpbx/bin/vxpbx_exchanged stop

On NetBackup Master Server

1) start the vxpbx Services.

nbumaster:~ # /opt/VRTSpbx/bin/vxpbx_exchanged start

2) art the NetBackup Services.

nbumaster:~ # /usr/openv/netbackup/bin/bp.start_all

15、cannot connect to robotic software daemon报错

这个错误是因为nbu在关闭的时候某些LOCK文件没有被完全删除造成的,可以使用下面的步骤重启后解决

A.      Shut down all the VERITAS NetBackup (tm) daemons:

#/usr/openv/netbackup/bin/goodies/netbackup stop

B.      Verify all NetBackup daemons are down by running the command:

#/usr/openv/netbackup/bin/bpps –a

Do not proceed until all NetBackup processes are down. (Remember to exit from the GUI interface.)if remain process if JAVA REF. you can use the “kill -9” command to kill them.

C.      cd /usr/openv/volmgr/misc/

D.    Delete the lock files (*lock*) that exist in this directory

E.      Restart the NetBackup daemons:

#/usr/openv/netbackup/bin/goodies/netbackup start

16、bpexpdate过期磁带,报”requested media id is in use”错误解决办法

如果你确认这个media并没有在使用,可以手工释放这个media占用的资源

首先使用/usr/openv/netbackup/bin/admincmd/nbrbutil -dump命令得到磁带占用资源的id

nbumaster:~ # /usr/openv/netbackup/bin/admincmd/nbrbutil -dump

Allocation Requests

(AllocationRequestSeq )

MDS allocations in EMM:

        MdsAllocation: allocationKey=91666 jobType=1 mediaKey=4000261 mediaId=YZ5350 driveKey=2000012 driveName=HP.ULTRIUM4-SCSI.004 drivePath=/dev/nst0 stuName=nbumaster-hcart-robot-tld-0 masterServerName=nbumaster mediaServerName=nbumaster ndmpTapeServerName= diskVolumeKey=0 mountKey=0 linkKey=0 fatPipeKey=0 scsiResType=1 serverStateFlags=1

        MdsAllocation: allocationKey=91667 jobType=1 mediaKey=4000264 mediaId=YZ5353 driveKey=2000008 driveName=HP.ULTRIUM4-SCSI.000 drivePath=/dev/nst5 stuName=nbumaster-hcart-robot-tld-0 masterServerName=nbumaster mediaServerName=nbumaster ndmpTapeServerName= diskVolumeKey=0 mountKey=0 linkKey=0 fatPipeKey=0 scsiResType=1 serverStateFlags=1

nbumaster:~ #

然后使用/usr/openv/netbackup/bin/admincmd/nbrbutil –releaseMDS 即上面的“allocationKey=”后面相应的数值,来释放资源

这样我们便能成功执行bpexpdate命令

17、查询目前有哪些磁带正在被哪个驱动器调用,以及正在运行哪些备份任务

nbumaster:~ # /usr/openv/netbackup/bin/admincmd/nbrbutil -dump

18、列出所有的job的明细

nbumaster:~ # /usr/openv/netbackup/bin/admincmd/bpdbjobs

将bpdbjobs输出到/tmp/bpdbjobs.txt文件中

bpdbjobs -file /tmp/bpdbjobs.txt

列出所有作业的摘要,可查看目前正处于ACTIVE的任务有多少个

nbumaster:~ # /usr/openv/netbackup/bin/admincmd/bpdbjobs -summary

MASTER SERVER QUEUED REQUEUED ACTIVE SUCCESS PARTSUCC FAILED INCOMP SUSP WAITING_RETRY  TOTAL

nbumaster          0  0      5  1320      0      43      0      0    0  1368

仅供参考


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/8358395.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-15
下一篇 2023-04-15

发表评论

登录后才能评论

评论列表(0条)

保存