Vous êtes sur la page 1sur 13

SAMBA on Solaris8(ashiasadevd49) Installing Samba on Solaris8:.......................................................

2
Option1: Get help from support team..........................................................................2 Option2: Do it yourself:...............................................................................................2

Configuring Samba on Solaris8:..................................................2


Set man path:................................................................................................................2 Create the Samba lock directory:.................................................................................3 Create a share directory:..............................................................................................3 Create samba configuration file:..................................................................................3 Test the configuration file:...........................................................................................4 Create samba passwords:.............................................................................................5 Arrange for inetd to start the Samba daemons:............................................................6 Using swat....................................................................................................................7

Appendix.........................................................................................7

Installing Samba on Solaris8:


Option1: Get help from support team
Make an install request for EDS (kim hood kim.hood@eds.com)

Option2: Do it yourself:
Download samba from sun freeware and install it. To use samba, you must also have installed the popt,libiconv, readline, ncurses and either the libgcc-3.3 or the gcc-3.3.2 packages. Some of the configuration steps are as follows: Configure the compilation process for your system:
# cd source # ./configure

Compile the source code:


# make

Finally, install the compiled code:


# make install

This installs all the Samba files in directories under /usr/local/samba with the binaries in /usr/local/samba/bin and the manual pages in /usr/local/samba/man.

Configuring Samba on Solaris8:


Set man path:
You now need to modify the man search path so that the 'man' command can find Samba's manual page. If you're running the CDE windowing system, this is done by editing the file /.dtprofile and adding the following lines (if they aren't already there) to the end of this file:
MANPATH=$MANPATH:/usr/man/:/usr/local/man:/usr/local/samba/man

It's advisable to log out and log in again at this point to activate this change. Make sure that the system can find the Samba manual page:
# man samba

Create the Samba lock directory:


At this point, create the lock directory used by Samba:
# mkdir /usr/local/samba/var/locks

Create a share directory:


It's useful to create a directory on the Solaris system that is fully shareable on the local network so that Windows systems can read files from the Solaris system and write files to it. To do this:
mkdir /share chmod 777 /share chmod +t /share chown sys /share chgrp sys share (Note: for IASA shared drive, we have used /backup for /share)

Create samba configuration file:


Samba is controlled by means of the configuration file /usr/local/samba/lib/smb.conf (See appendix A for the complete file) Create a basic configuration file containing the following lines: # Samba config file # Global parameters [global] workgroup = NA server string = IASA Team Docs [share] comment = Solaris share path = /backup username = bsahu,mbreen,drawlins,dsankar,sashraf,ktseng,adhammav,bmcdermo,csagayar, ggu,mgullank,mnadendl,nkaredla,rthanika,vambekar,tbasar,bruiz,cmcquirt,garde n,bstoner,rhearst,pmarcott

read only = No only user = Yes Note that "# Global parameters "[share]" should be positioned at the start of their lines and all other lines should be prefixed with a tab character. In this file, replace NA stands for the name of your Windows workgroup or domain. On a Windows 95 ,98 or XP system, this is the "Workgroup" name set on the Identification tab in Start -> Settings -> Control Panel -> Network. On NT 4, this name is found in the same place but is called the "Domain". The effect of this basic configuration file is to allow access to your Solaris system from Windows machines on the local network only. The /backup directory is shared with both read and write access. Incoming connections to the Solaris system have a User and Group identity (uid and gid) of the "nobody" user by default. In our configuration we have a username attribute separated by commas. This tells samba to allow only the users who are listed in the username attribute to access the share mount point. The other attributes that are used to authenticate users against samba password are : smb passwd file = /usr/local/samba/private/smbpasswd private dir = /usr/local/samba/private passdb backend = smbpasswd

Test the configuration file:


It's advisable to check that Samba is happy with the basic configuration file. Type the following: # cd /usr/local/samba/bin # ./testparm and this should display the following: /usr/local/samba/bin > ./testparm Load smb config files from /usr/local/samba/lib/smb.conf Processing section "[share]" Loaded services file OK.

Server role: ROLE_STANDALONE Press enter to see a dump of your service definitions

# Global parameters [global] workgroup = NA server string = IASA Team Docs

[share] comment = Solaris share path = /backup username = bsahu,mbreen,drawlins,dsankar,sashraf,ktseng,adhammav,bmcdermo,csagayar, ggu,mgullank,mnadendl,nkaredla,rthanika,vambekar,tbasar,bruiz,cmcquirt,garde n,bstoner,rhearst,pmarcott read only = No only user = Yes

Create samba passwords:


In the step listed above, we had created a list of users who can access the samba share drive. The passwords users use to access the shared drive are created using the /usr/local/samba/bin/smbpasswd command in the following way: /usr/local/samba/bin/smbpasswd -a bsahu New SMB password: Please ensure that the userid for which samba password is created exists in the /etc/passwd file. If it does not exist, use useradd to create an unix user first. Heres a sample of one unix user with a samba password account /usr/local/samba/private > cat smbpasswd |grep bsahu

bsahu:8640:6671A078A75FF480AAD3B435B51404EE:9AEDB192B10EEC2CA D96F0FB403F33F9:[U ]:LCT-4458CC17: /usr/local/samba/private > cat /etc/passwd|grep bsahu bsahu:x:8640:1::/usr/users/bsahu:/bin/sh

Arrange for inetd to start the Samba daemons:


Most of Samba's services are provided by means of three servers or daemons: smbd is the Samba server, nmbd is the NetBIOS name server and swat is a Web-based Samba configuration tool. These deal with incoming connections on ports 137, 139 and 901 respectively and we need to tell the Solaris internet daemon, inetd, to start the appropriate Samba daemons whenever an incoming request is received on these ports. Edit /etc/services and make the following changes. Immediately after the line which reads: sunrpc insert the two lines: netbios-ns netbios-ssn 137/udp 139/tcp # Samba nmbd # Samba smbd 111/tcp rpcbind

and, after the line which reads: ldaps sldap) insert the line: swat 901/tcp # Samba swat 636/udp # LDAP protocol over TLS/SSL (was

Now edit /etc/inetd.conf and add the following three lines to the end of the file: netbios-ssn stream tcp nowait root /usr/local/samba/bin/smbd smbd netbios-ns dgram udp wait root /usr/local/samba/bin/nmbd nmbd

swat stream tcp /usr/local/samba/bin/swat swat

nowait.400

root

Tell the inetd daemon to re-read its configuration file: # pkill -HUP inetd and Samba is installed and working. Using swat Swat is a Web server which runs on your local machine in response to HTTP connections on port 901. It provides a graphical interface for configuring Samba and access to some of Samba's documentation. To connect to Swat, simply start your Web browser and point it at: http://ashiasadevd49:901

Appendix
References: INSTALL : http://www.kempston.net/solaris/samba.html

SAMBAPASS: http://optics.ph.unimelb.edu.au/help/samba/smbpasswd.5.html Smb.conf for dev 49 :


# Samba config file created using SWAT # from 153.39.145.241 (153.39.145.241) # Date: 2006/05/05 14:07:01 # Global parameters [global] dos charset = CP850 unix charset = UTF-8 display charset = LOCALE workgroup = NA netbios name = ASHIASADEVD49 netbios aliases = netbios scope = server string = IASA Team Docs interfaces = bind interfaces only = No security = USER auth methods = encrypt passwords = Yes update encrypted = No client schannel = Auto server schannel = Auto allow trusted domains = Yes hosts equiv = min password length = 5 map to guest = Never null passwords = No obey pam restrictions = No password server = * smb passwd file = /usr/local/samba/private/smbpasswd private dir = /usr/local/samba/private passdb backend = smbpasswd algorithmic rid base = 1000 root directory = guest account = nobody pam password change = No passwd program = passwd chat = *new*password* %n\n *new*password* %n\n *changed* passwd chat debug = No passwd chat timeout = 2 check password script = username map = password level = 0 username level = 0 unix password sync = No restrict anonymous = 0 lanman auth = Yes ntlm auth = Yes client NTLMv2 auth = No client lanman auth = Yes client plaintext auth = Yes preload modules =

use kerberos keytab = No log level = 0 syslog = 1 syslog only = No log file = max log size = 5000 debug timestamp = Yes debug hires timestamp = No debug pid = No debug uid = No smb ports = 445 139 large readwrite = Yes max protocol = NT1 min protocol = CORE read bmpx = No read raw = Yes write raw = Yes disable netbios = No acl compatibility = defer sharing violations = Yes nt pipe support = Yes nt status support = Yes announce version = 4.9 announce as = NT max mux = 50 max xmit = 16644 name resolve order = lmhosts wins host bcast max ttl = 259200 max wins ttl = 518400 min wins ttl = 21600 time server = No unix extensions = Yes use spnego = Yes client signing = auto server signing = No client use spnego = Yes change notify timeout = 60 deadtime = 0 getwd cache = Yes keepalive = 300 kernel change notify = Yes lpq cache time = 10 max smbd processes = 0 paranoid server security = Yes max disk size = 0 max open files = 10000 socket options = TCP_NODELAY use mmap = Yes hostname lookups = No name cache timeout = 660 load printers = Yes printcap cache time = 0 printcap name = lpstat cups server = disable spoolss = No enumports command = addprinter command =

deleteprinter command = show add printer wizard = Yes os2 driver map = mangling method = hash2 mangle prefix = 1 stat cache = Yes machine password timeout = 604800 add user script = delete user script = add group script = delete group script = add user to group script = delete user from group script = set primary group script = add machine script = shutdown script = abort shutdown script = logon script = logon path = \\%N\%U\profile logon drive = logon home = \\%N\%U domain logons = No os level = 20 lm announce = Auto lm interval = 60 preferred master = Auto local master = Yes domain master = Auto browse list = Yes enhanced browsing = Yes dns proxy = Yes wins proxy = No wins server = wins support = No wins hook = wins partners = kernel oplocks = Yes lock spin count = 3 lock spin time = 10 oplock break wait time = 0 ldap admin dn = ldap delete dn = No ldap filter = (uid=%u) ldap group suffix = ldap idmap suffix = ldap machine suffix = ldap passwd sync = no ldap replication sleep = 1000 ldap suffix = ldap ssl = ldap timeout = 15 ldap user suffix = add share command = change share command = delete share command = config file = preload =

lock directory = /usr/local/samba/var/locks pid directory = /usr/local/samba/var/locks utmp directory = wtmp directory = utmp = No default service = message command = dfree command = get quota command = set quota command = remote announce = remote browse sync = socket address = 0.0.0.0 homedir map = afs username map = time offset = 0 NIS homedir = No panic action = host msdfs = No enable rid algorithm = Yes idmap backend = idmap uid = idmap gid = template primary group = nobody template homedir = /home/%D/%U template shell = /bin/false winbind separator = \ winbind cache time = 300 winbind enable local accounts = No winbind enum users = Yes winbind enum groups = Yes winbind use default domain = No winbind trusted domains only = No winbind nested groups = No comment = path = username = invalid users = valid users = admin users = read list = write list = printer admin = force user = force group = read only = Yes create mask = 0744 force create mode = 00 security mask = 0777 force security mode = 00 directory mask = 0755 force directory mode = 00 directory security mask = 0777 force directory security mode = 00 force unknown acl user = No inherit permissions = No inherit acls = No

guest only = No guest ok = No only user = No hosts allow = hosts deny = ea support = No nt acl support = Yes profile acls = No map acl inherit = No afs share = No block size = 1024 max connections = 0 min print space = 0 strict allocate = No strict sync = No sync always = No use sendfile = No write cache size = 0 max reported print jobs = 0 max print jobs = 1000 printable = No printing = sysv cups options = print command = lp -c -d%p %s; rm %s lpq command = lpstat -o%p lprm command = cancel %p-%j lppause command = lp -i %p-%j -H hold lpresume command = lp -i %p-%j -H resume queuepause command = disable %p queueresume command = enable %p printer name = use client driver = No default devmode = No force printername = No default case = lower case sensitive = Auto preserve case = Yes short preserve case = Yes mangling char = ~ hide dot files = Yes hide special files = No hide unreadable = No hide unwriteable files = No delete veto files = No veto files = hide files = veto oplock files = map system = No map hidden = No map archive = Yes mangled names = Yes mangled map = store dos attributes = No browseable = Yes blocking locks = Yes csc policy = manual fake oplocks = No

locking = Yes oplocks = Yes level2 oplocks = Yes oplock contention limit = 2 posix locking = Yes strict locking = Yes share modes = Yes copy = include = preexec = preexec close = No postexec = root preexec = root preexec close = No root postexec = available = Yes volume = fstype = NTFS set directory = No wide links = Yes follow symlinks = Yes dont descend = magic script = magic output = delete readonly = No dos filemode = No dos filetimes = No dos filetime resolution = No fake directory create times = No vfs objects = msdfs root = No msdfs proxy = [share] comment = Solaris share path = /backup username = bsahu,mbreen,drawlins,dsankar,sashraf,ktseng,adhammav,bmcdermo,csagayar ,ggu,mgullank,mnadendl,nkaredla,rthanika,vambekar,tbasar,bruiz,cmcquirt ,garden,bstoner,rhearst,pmarcott read only = No only user = Yes

Vous aimerez peut-être aussi