Quote:
Originally Posted by JnPson
I cannot read anything from the logs due to lack of knowledge.
|
See
http://logreporters.sourceforge.net/ (and Logwatch): should make reporting and interpreting what's reported easier.
Quote:
Originally Posted by JnPson
su -amavis -s /bin/sh -c 'razor-admin -Register && razor-admin-discover'
|
Case matters and AFAIK "-register" should be lowercase. Read 'man razor-admin' then try
Code:
su -amavis -s /bin/sh -c 'razor-admin -d -create' 2>&1 | tee /tmp/razorcreate.txt
su -amavis -s /bin/sh -c 'razor-admin -d -register' 2>&1 | tee -a /tmp/razorcreate.txt
su -amavis -s /bin/sh -c 'razor-admin -d -discover' 2>&1 | tee -a /tmp/razorcreate.txt
The file "/tmp/razorcreate.txt" then holds a record of stdout and stderr of all three commands, provided you noticed the "-a" switch using 'tee' ;-p