cancel
Showing results for 
Search instead for 
Did you mean: 

AIR error 84 during Replication,status 191

paultang
Level 3

I have some issues with AIR. OS isWindows 2008 R2and Windows 2012,NBU version is 7.7.3 .AIR will error,status 191.Please check the attached details.Please help me.Thank you.

21 REPLIES 21

@sdo,Thank you very much for your help.But I don't understand.This explanation may be difficult for me to understand.

sdo
Moderator
Moderator
Partner    VIP    Certified

@paultang - here's how to check the MSDP replication, storage, spoold, spad logs... something like :

$ grep -v " INFO " logfile.log

...and you can also chain greps, e.g. to keep adding more and more filters, like :

$ grep -v " INFO " spoold.log | grep -i -v "something1" | grep -i -v "something2"

...I tried this on a couple of your log files, and it looks like some of the errors are to do with loss / failure of network sessions.

.

Another example is that this reveals some memory exhaustion errors in spoold :

$ grep -v " INFO " spoold.log | grep -v "informational message" | grep -v "^$" | grep -v "No action is required"

.

...and you can try similar ideas on the other MSDP logs too.