Author |
Message
|
bruce2359 |
Posted: Fri Jan 12, 2007 10:46 am Post subject: |
|
|
Guest
|
Jeff says: Auditors might have taken this decision thinking that it will be "more" difficult for unsolicited...
Good auditors identify problems (real or imaginary); they don't dictate solutions.
I briefly worked with one auditor that thought it was a swell idea to mandate that Java applets be disabled/prohibited company-wide to avoid the possibility of hacks, viruses, or whatever he thought was the issue.
He should have written an audit item stating that Java might blah blah blah; and seek a response from IT.
This is what auditors are supposed to do. |
|
Back to top |
|
 |
jefflowrey |
Posted: Fri Jan 12, 2007 11:10 am Post subject: |
|
|
Grand Poobah
Joined: 16 Oct 2002 Posts: 19981
|
bruce2359 wrote: |
Jeff says: |
Nope. _________________ I am *not* the model of the modern major general. |
|
Back to top |
|
 |
bruce2359 |
Posted: Fri Jan 12, 2007 12:00 pm Post subject: |
|
|
Guest
|
jefflowrey wrote: |
bruce2359 wrote: |
Jeff says: |
Nope. |
Kats said that. (Must push Quote button) |
|
Back to top |
|
 |
kats |
Posted: Fri Jan 12, 2007 12:35 pm Post subject: |
|
|
Voyager
Joined: 20 Apr 2006 Posts: 78
|
bruce2359,
I will push quote button next time. Sorry. |
|
Back to top |
|
 |
Neha |
Posted: Fri Feb 02, 2007 2:42 pm Post subject: |
|
|
Novice
Joined: 19 Oct 2006 Posts: 13
|
I've just issued a MQSC command:
ALTER CHANNEL(SYSTEM.DEF.SVRCONN) CHLTYPE(SVRCONN) MCAUSER(NOBODY)
4 : ALTER CHANNEL(SYSTEM.DEF.SVRCONN) CHLTYPE(SVRCONN) MCAUSER(NOBODY)
AMQ8016: MQSeries channel changed.
How to roll it back. That is again setting MCAUSER to Blank value.
Only through command prompt.
I tried :
ALTER CHANNEL(SYSTEM.DEF.SVRCONN) CHLTYPE(SVRCONN) MCAUSER() Doesn't work. |
|
Back to top |
|
 |
pathipati |
Posted: Fri Feb 02, 2007 3:05 pm Post subject: |
|
|
Master
Joined: 03 Mar 2006 Posts: 296
|
Hi Neha,
try this
ALTER CHANNEL(SYSTEM.DEF.SVRCONN) CHLTYPE(SVRCONN) MCAUSER('') |
|
Back to top |
|
 |
Neha |
Posted: Fri Feb 02, 2007 3:17 pm Post subject: |
|
|
Novice
Joined: 19 Oct 2006 Posts: 13
|
Hello Pathipati,
I tried:
ALTER CHANNEL(SYSTEM.DEF.SVRCONN) CHLTYPE(SVRCONN) MCAUSER('')
4 : ALTER CHANNEL(SYSTEM.DEF.SVRCONN) CHLTYPE(SVRCONN) MCAUSER('')
AMQ8413: String Length Error.
MQ version 5.1. Platform: AIX. |
|
Back to top |
|
 |
Neha |
Posted: Fri Feb 02, 2007 3:23 pm Post subject: |
|
|
Novice
Joined: 19 Oct 2006 Posts: 13
|
|
Back to top |
|
 |
kats |
Posted: Fri Feb 09, 2007 9:59 am Post subject: |
|
|
Voyager
Joined: 20 Apr 2006 Posts: 78
|
This is how I did it:
Trying to find out from server level whether Sys.Def.Svrconn channel is in usage or not; I wrote a shell script and inserted mqsc command
dis chs(SYS.DEF.SVRCONN)
and let the cron run the script every X minutes and grep the status of SYS.DEF.SVRCONN channel if it's running.
Not a fool proof way but pretty close. |
|
Back to top |
|
 |
|