Dumpfile-to-rt3 gives error

Hi All

When I start running dumpfile-to-rt3 I get this following error

unix passed to setlogsock, but path not available at
/usr/local/lib/perl5/site_perl/5.8.0/Log/Dispatch/Syslog.pm line 66

Anyone else have experienced this error ?

Asif Iqbal
http://pgpkeys.mit.edu:11371/pks/lookup?op=get&search=0x8B686E08
There’s no place like 127.0.0.1

Asif Iqbal wrote:

unix passed to setlogsock, but path not available at
/usr/local/lib/perl5/site_perl/5.8.0/Log/Dispatch/Syslog.pm line 66

You’re using Solaris or HP/UX?

Search the mailing lists, this has been mentioned before.
Basically, unless you want to hack on the Log::Dispatch
and/or Sys::Syslog (from memory) modules, you’re probably
better off disabling syslog and logging to file instead.
Phil Homewood, Systems Janitor, http://www.SnapGear.com
pdh@snapgear.com Ph: +61 7 3435 2810 Fx: +61 7 3891 3630
SnapGear - Custom Embedded Solutions and Security Appliances

I am using Solaris SPARC 8. I will look it up in mailing list

Thanks a lotOn Tue, 15 Jul 2003, Phil Homewood wrote:

Asif Iqbal wrote:

unix passed to setlogsock, but path not available at
/usr/local/lib/perl5/site_perl/5.8.0/Log/Dispatch/Syslog.pm line 66

You’re using Solaris or HP/UX?

Search the mailing lists, this has been mentioned before.
Basically, unless you want to hack on the Log::Dispatch
and/or Sys::Syslog (from memory) modules, you’re probably
better off disabling syslog and logging to file instead.

Asif Iqbal
http://pgpkeys.mit.edu:11371/pks/lookup?op=get&search=0x8B686E08
There’s no place like 127.0.0.1

Asif Iqbal wrote:

unix passed to setlogsock, but path not available at
/usr/local/lib/perl5/site_perl/5.8.0/Log/Dispatch/Syslog.pm line 66

You’re using Solaris or HP/UX?

Search the mailing lists, this has been mentioned before.
Basically, unless you want to hack on the Log::Dispatch
and/or Sys::Syslog (from memory) modules, you’re probably
better off disabling syslog and logging to file instead.

Here’s what I noted about fixing the Syslog module to overcome the same
problem on Solaris 8:

Need to fix lib/perl5/site_perl/5.8.0/Log/Dispatch/Syslog.pm
In the _init routine, there are args:
socket => { type => SCALAR,
default => ‘unix’ },
…change the default to ‘inet’, which is what the POD documentation says:
default => ‘inet’ },
…then syslog will work.

-- Larry