Samba with AD authentication on Solaris 8
From Brandonhutchinson.com
(Difference between revisions)
| Line 57: | Line 57: | ||
$ gzip -cd samba-3.0.26a.tar.gz | tar xvf - | $ gzip -cd samba-3.0.26a.tar.gz | tar xvf - | ||
$ cd samba-3.0.26a/source | $ cd samba-3.0.26a/source | ||
| - | $ | + | $ PATH=$PATH:/usr/local/bin ./configure -with-logfilebase=/var/log --with-sslinc=/usr/local/ssl/include --with-ssllib=/usr/local/lib --with-included-popt --with-smbwrapper --with-syslog --with-automount --with-pam --with-ldap --with-ads --with-winbind |
| - | + | $ sudo make install | |
| - | + | ||
| - | + | ||
Revision as of 14:01, 19 September 2007
The SunFreeware Samba package is not compiled with AD support.
$ pkginfo -l SMCsamba
PKGINST: SMCsamba
NAME: samba
CATEGORY: application
ARCH: sparc
VERSION: 3.0.25a
...
$ /usr/local/samba/sbin/smbd -b | egrep 'ADS|LDAP|KRB|WINBIND'
$ tar xvf krb5-1.6.2-signed.tar
$ gpg --verify krb5-1.6.2.tar.gz.asc gpg: Signature made Tue 10 Jul 2007 02:20:59 PM CDT using RSA key ID F376813D gpg: Can't check signature: public key not found $ gpg --keyserver pgp.mit.edu --recv-keys F376813D gpg: requesting key F376813D from hkp server pgp.mit.edu gpg: key F376813D: duplicated user ID detected - merged gpg: key F376813D: public key "Tom Yu <tlyu@MIT.EDU>" imported gpg: no ultimately trusted keys found gpg: Total number processed: 1 gpg: imported: 1 (RSA: 1)
$ gpg --verify krb5-1.6.2.tar.gz.asc gpg: Signature made Tue 10 Jul 2007 02:20:59 PM CDT using RSA key ID F376813D gpg: Good signature from "Tom Yu <tlyu@MIT.EDU>" gpg: WARNING: This key is not certified with a trusted signature! gpg: There is no indication that the signature belongs to the owner. Primary key fingerprint: 52 E0 3E E9 38 AE 70 58 3F 21 5C C8 5C C4 55 24
Download and install Kerberos
$ gzip -cd krb5-1.6.2.tar.gz | tar xvf - $ cd krb5-1.6.2/src $ PATH=$PATH:/usr/local/bin ./configure $ make $ sudo make install
Download and install OpenLDAP
$ gzip -cd openldap-2.3.38.tgz | tar xvf - $ cd openldap-2.3.38 $ PATH=$PATH:/usr/local/bin ./configure --disable-bdb --enable-null --without-tls ... checking db.h usability... no checking db.h presence... no checking for db.h... no configure: error: BDB/HDB: BerkeleyDB not available $ PATH=$PATH:/usr/local/bin ./configure --disable-backends --enable-null --without-tls $ make depend $ make $ sudo make install
Download and install Samba
$ gzip -cd samba-3.0.26a.tar.gz | tar xvf - $ cd samba-3.0.26a/source $ PATH=$PATH:/usr/local/bin ./configure -with-logfilebase=/var/log --with-sslinc=/usr/local/ssl/include --with-ssllib=/usr/local/lib --with-included-popt --with-smbwrapper --with-syslog --with-automount --with-pam --with-ldap --with-ads --with-winbind $ sudo make install
