发布时间:2013-08-05 16:00:27
之前发表了一篇关于用户密码管理策略的文章 这里是对之前文章的一些补充aix的密码管理 可以通过smit 工具1.smit chuser界面上出现User NAME [] 此处按f4 list 列出所有的用户2.选择某个用户回车此处是用户的信息包括(1)user id 用户的id(2)primary group 主组和group set 所属组集合(.........【阅读全文】
发布时间:2013-07-08 14:41:38
由于机房错误的操作把 ibm p720 重启了 这是数据库服务器 发现问题后,首先登陆到 shell 想启动oracle 数据库 却发现起不来以下是我遇到的问题 和解决过程 拿出来分享1.启动数据库的时候 遇到的错误ora-09925:unable to create audit trail fileibm aix risc system/6000 error:13:permission denied看到这个.........【阅读全文】
发布时间:2013-06-25 17:07:09
假设我们定义了一个变量为:file=/dir1/dir2/dir3/my.file.txt可以用${ }分别替换得到不同的值:${file#*/}:删掉第一个/ 及其左边的字符串:dir1/dir2/dir3/my.file.txt${file##*/}:删掉最后一个/ 及其左边的字符串:my.file.txt${file#*.}:删掉第一个. 及其左边的字符串:f.........【阅读全文】
发布时间:2013-05-25 14:53:20
#!/bin/bash#this is scirpts about apache customlog#date is today#date is yesterdayapadate=`date -d last-day "+%d/%b/%Y"`#cat /usr/local/apache/logs/access_log |grep "$apadate" |more#total size#cat /usr/local/apache/logs/access_log |grep "$apadate" |awk 'BEGIN{print "total size(B)"}.........【阅读全文】