2010年5月19日星期三

应急面试了个小伙子,很显然我没有面试的能力。整个过程我都想问他:你妈贵姓!

2010年5月16日星期日

通过gtalk 的状态有无法避免的恶心,那就是不断的有离开的状态信息,以及先前发布的消息不断轮询出现,郁闷,但是确没有其他更好的方法,除非不用digu,说实话他太不成熟了,但是等成熟了估计就被XX了

2010年5月14日星期五

新疆老朋友们QQ上无比的兴奋和幸福,但是诧异的问我,怎么上次看你家宝贝图片的网站看不了啊。我告诉他,对不起,你还在局域网中,只是大了点,若要浏览请上网,而不是上局域网
新疆的父老乡亲亲朋好友,好久不见!大家网上好?

2010年5月13日星期四

本来想给老婆好好的过个生日,结果午餐时段被我老板折腾掉了,晚餐有被她老板折腾没希望了。有时候老板比客户还能折腾,还让人烦躁
google?go!饭否?否!facebook?死!picasa?屁!YouTube?没有!dropbox?drop!
怀念 Dorpbox

2010年5月9日星期日

母亲60多岁了,子宫在多年前早已病变并摘离。说实话我这辈子没希望再有个弟弟或者妹妹了。可惜这是我的想法,街道办事处却不解。非要我父母的计划生育证明,真操蛋。

2010年5月6日星期四

每次办证都让人愤怒,什么都可以和计划生育联系起来。我就不明白我父母养老要迁户口到我这里和我老婆生了几个孩子有什么关系。最可笑的是其实她们关心的不是有几个孩子,而是你上不上环!妈了个八把子的,你扎了个刺还疼几天呢,凭啥给我老婆肚子里安个东西?
为什么ping.fm总是显示不在线?

2010年5月5日星期三

弯弯忽然对洗碗很感兴趣,拉着我的手一定要洗碗…
为什么ping.fm总是显示不在线?

2010年5月2日星期日

老姐感冒,弯弯感冒,老婆感冒,老妈感冒,我也感冒,现在就老爸进经住了病毒的考验

2010年4月30日星期五

starluo sent you a file: ["周末,节前,未必忙碌却必须工作…"]. Download 30042010.jpg (30042010.jpg) here: http://ping.fm/0uiw6

2010年4月29日星期四

在各个的微博使用中可以发现:老外的技术不一定一直领先,但是思维绝对一直处在领先的地位

2010年4月27日星期二

added http://hellotx

added http://hellotxt.com to update and read status

测试 hellotxt

测试 hellotxt

2010年2月16日星期二

2007年9月14日星期五

公告

此博客由于大家都知道的原因不得不废弃!
新博客转向:
http://confusedday.blogbus.com/

2007年6月25日星期一

cicsupdate错误处理

cicsupdate时一些错误处理

今天帮客户修改Region应用的并发数发现如下错误
$ cicsupdate -c rd -r RegionName MinServer=nn MaxServer=nn
ERZ034020E/0590: You are not authorized to operate on the permanent database class rd
ERZ046005E/0062: Entry '' not found for permanent database class 'rd'


CICS Message and Codes显示:
ERZ034020E You are not authorized to operate on the permanent database class className Explanation: You attempted to perform an operation on a permanent database class's stanza file that you do not have authority to operate on. The file group access rights of the stanza file do not allow you access. System Action: The operation terminates. The permanent database request has not been performed. User Response: Login as a user with sufficient group access to perform updates to the class in the permanent database. Group access is required because any access to the database class stanza file may require reinstatement of a backup file that was created and thus owned by another administrator.

此问题很好解决,根据意思直接查看/usr/cics_regions/RegionName/database/RD/RD.stanza文件访问权限。发现文件缺少用户组写操作权限。使用chmod 660 RD.stanza修改完毕后继续操作:
$ cicsupdate -c rd -r RegionName MinServer=nn MaxServer=nn
ERZ034026E/0031: Unable to access stanza file '/var/cics_regions/RegionName/database/RD/RD.temp'; error code 13
ERZ046111E/0097: Unsuccessful attempt to update entry '' in permanent database class 'rd'


CICS Message and Codes显示:
ERZ034026E Unable to access stanza file 'filePath'; error code errorNumber Explanation: CICS detected an error when attempting to access the stanza file filePath. The operating system gives the error as errorNumber. System Action: If the error occurs during region startup, CICS terminates the startup procedure. If the error occurs during a Resource Definition Online (RDO) session, CICS terminates the current RDO operation. User Response: As indicated by the operating system in the error code. If the file is a permanent database class's stanza file it can be restored from a backup. If the file is a temporary or backup stanza file used during database operation then the operation can be retried.

此问题有些蹊跷,可以从/usr/lib/errno.h文件中查出13的错误原因:
#define EACCES 13 /* Permission denied */
但是cics并不需要"/var/cics_regions/RegionName/database/RD/RD.temp"文件。因此我估计cicsupdate一定是在修改RD.stanza文件时需要在当前目录下创建RD.temp然后再操作RD.stanza。根据这样的假设,即是无法在RD目录下创建RD.temp文件,所以估计是RD目录权限有问题。检查后发现确实如此:RD目录缺少用户组写操作权限。chmod修改cicsupdate无错误再报出。