10年工作经验,专研网站运维。
全部博文(454)
发布时间:2013-04-18 17:32:43
报错信息:报错信息一:You are running addbctl.sh version 120.1Starting the database PROD ...SQL*Plus: Release 11.1.0.7.0 - Production on Thu Apr 18 17:18:44 2013Copyright (c) 1982, 2008, Oracle. All rights reserved.Connected.ORA-01081: cannot start already-running ORACLE.........【阅读全文】
发布时间:2013-04-18 09:33:23
#!/bin/bashcat aaa.bbbif[ $? = 0 ];thenecho "The return value is zero"elseecho "It's wrong"fi解释: 之前执行一条命令cat aaa.bbb.如果这条命令成功执行,并且命令没有报错,并且执行完成的话。那么会继续执行下一条命令。......【阅读全文】
发布时间:2013-04-17 22:03:21
#!/bin/bashif[ ! -d /tmp/aaa ];thenmkdir -p /tmp/aaaelseecho "This directry is exist"fi......【阅读全文】
发布时间:2013-04-17 15:46:41
#!/bin/bash###### The script is auto cold backup EBS service.### It about need 5 hours.### Pay attention to run it by penske account### Current appTier and DBTier is running.#### Define variablepenske_home=/d01/penskedate=`date +%Y%m%d%H%M`PSline=12# S.........【阅读全文】