Re: bind 9.60p1 on solaris 10

2009-02-23 Thread SN
On Feb 19, 7:14 pm, Mark Andrews  wrote:
> In message 
> <937393c4-77a8-4dba-8a4f-14560c25c...@o11g2000yql.googlegroups.com>,
>
>  SN writes:
> > Hi Group.
>
> > libcrypto.so.0.9.8 is not being found as a link library.  Trying to
> > run as in a chroot'ed environment on solaris 10 (core install).
> > Kindly advise.
>
>         Install the package that includes OpenSSL.
>
>
>
>
>
> > r...@qdc-dns2(bash-3.0)/dns/chroot/usr/local/sbin# ldd /dns/chroot/usr/
> > local/sbin/named
> >         libcrypto.so.0.9.8 =>    (file not found)
> >         libnsl.so.1 =>   /usr/lib/libnsl.so.1
> >         libnsl.so.1 (SUNW_1.9.1) =>      (version not found)
> >         libsocket.so.1 =>        /usr/lib/libsocket.so.1
> >         libscf.so.1 =>   /usr/lib/libscf.so.1
> >         libpthread.so.1 =>       /usr/lib/libpthread.so.1
> >         libthread.so.1 =>        /usr/lib/libthread.so.1
> >         libxml2.so.2 =>  /usr/lib/libxml2.so.2
> >         libz.so.1 =>     /usr/lib/libz.so.1
> >         libm.so.2 =>     /usr/lib/libm.so.2
> >         libc.so.1 =>     /usr/lib/libc.so.1
> >         libmp.so.2 =>    /lib/libmp.so.2
> >         libmd.so.1 =>    /lib/libmd.so.1
> >         libdoor.so.1 =>  /lib/libdoor.so.1
> >         libuutil.so.1 =>         /lib/libuutil.so.1
> >         libgen.so.1 =>   /lib/libgen.so.1
> >         /platform/SUNW,Serverblade1/lib/libc_psr.so.1
> >         /platform/SUNW,Serverblade1/lib/libmd_psr.so.1
>
> > r...@qdc-dns2(bash-3.0)/dns/chroot/usr/local/sbin# /etc/init.d/dns
> > start
> > ld.so.1: named: fatal: libcrypto.so.0.9.8: open failed: No such file
> > or directory
> > Killed
>
> > Kind Regards,
> > -Sajed Naseem
> > ___
> > bind-users mailing list
> > bind-us...@lists.isc.org
> >https://lists.isc.org/mailman/listinfo/bind-users
>
> --
> Mark Andrews, ISC
> 1 Seymour St., Dundas Valley, NSW 2117, Australia
> PHONE: +61 2 9871 4742                 INTERNET: mark_andr...@isc.org
> ___
> bind-users mailing list
> bind-us...@lists.isc.orghttps://lists.isc.org/mailman/listinfo/bind-users- 
> Hide quoted text -
>
> - Show quoted text -

thank you.  I installed openssl on the server and it worked.  I had
forgotten that.  It was installed on the server I compiled on.

new error.  Any help would be appreciated.

r...@qdc-dns2(bash-3.0)/dns/chroot# chroot /dns/chroot /usr/local/sbin/
named-checkconf /etc/named.conf
Segmentation Fault (core dumped)

This is off a default named.conf I got off sean boran's website.  No
named.conf is working.


acl "nameservers" {
  localhost;
  // my primary/sec
  192.168.128.33;
  192.168.128.34;
  // Internet & ISP:
  164.128.36.34;   //ip-plus
  130.59.1.80; //domreg.nic.ch
};

options {
directory "/var/named";
// query-source address * port 53;
pid-file "/var/run/named.pid";
stacksize 30M;
datasize 20M;
auth-nxdomain yes;  // v9 wants this?
allow-transfer { nameservers; };   // this limits ALL zones
transfer-format many-answers;   // faster transfers
version "DNS server";   // hide BIND version
};

/// default zones //

// this is the main file for the domain name server. Each line gives
// the file where is stored the name table for a particular domain.

// named.root / root.hint is not needed for BIND9

// localhost
zone "localhost" {
type master;
file "localhost.zone";
allow-update { none; };
};
// reverse mapping of Loopback address
zone "0.0.127.in-addr.arpa" IN {
type master;
file "localhost.rev";
notify no;
allow-update { none; };
};

 primaries //
// Transfer ACLs are governered globally above
zone "test1.com" {
type master;
file "test1.com";
allow-update { none; };
};

// reverse mapping example
zone "128.168.192.in-addr.arpa" IN {
type master;
file "rev.192.168.128";
};

//eof

___
bind-users mailing list
bind-users@lists.isc.org
https://lists.isc.org/mailman/listinfo/bind-users


bind 9.60p1 on solaris 10

2009-02-19 Thread SN
Hi Group.

libcrypto.so.0.9.8 is not being found as a link library.  Trying to
run as in a chroot'ed environment on solaris 10 (core install).
Kindly advise.

r...@qdc-dns2(bash-3.0)/dns/chroot/usr/local/sbin# ldd /dns/chroot/usr/
local/sbin/named
libcrypto.so.0.9.8 =>(file not found)
libnsl.so.1 =>   /usr/lib/libnsl.so.1
libnsl.so.1 (SUNW_1.9.1) =>  (version not found)
libsocket.so.1 =>/usr/lib/libsocket.so.1
libscf.so.1 =>   /usr/lib/libscf.so.1
libpthread.so.1 =>   /usr/lib/libpthread.so.1
libthread.so.1 =>/usr/lib/libthread.so.1
libxml2.so.2 =>  /usr/lib/libxml2.so.2
libz.so.1 => /usr/lib/libz.so.1
libm.so.2 => /usr/lib/libm.so.2
libc.so.1 => /usr/lib/libc.so.1
libmp.so.2 =>/lib/libmp.so.2
libmd.so.1 =>/lib/libmd.so.1
libdoor.so.1 =>  /lib/libdoor.so.1
libuutil.so.1 => /lib/libuutil.so.1
libgen.so.1 =>   /lib/libgen.so.1
/platform/SUNW,Serverblade1/lib/libc_psr.so.1
/platform/SUNW,Serverblade1/lib/libmd_psr.so.1

r...@qdc-dns2(bash-3.0)/dns/chroot/usr/local/sbin# /etc/init.d/dns
start
ld.so.1: named: fatal: libcrypto.so.0.9.8: open failed: No such file
or directory
Killed

Kind Regards,
-Sajed Naseem
___
bind-users mailing list
bind-users@lists.isc.org
https://lists.isc.org/mailman/listinfo/bind-users