Troubleshooting Mac OS X Server Tips and tricks
|
|
|
- Maria Underwood
- 10 years ago
- Views:
Transcription
1 Troubleshooting Mac OS X Server Tips and tricks Zack Smith Consulting Engineer - January 28th, 2011
2 A few words on the future of Mac OS X Server...
3
4
5
6
7 Troubleshooting a Service tail -f /var/log/samba/log.smbd
8 Troubleshooting a Service tail -f /var/log/samba/log.smbd Returning domain sid for domain FOOBARBAZ -> S
9 Troubleshooting a Service tail -f /var/log/samba/log.smbd Returning domain sid for domain FOOBARBAZ -> S check_ntlm_password: authentication for user [diradmin] -> [diradmin] -> [diradmin] succeeded
10 Troubleshooting a Service tail -f /var/log/samba/log.smbd Returning domain sid for domain FOOBARBAZ -> S check_ntlm_password: authentication for user [diradmin] -> [diradmin] -> [diradmin] succeeded [2009/08/11 16:09:57, 2, pid=447] /SourceCache/samba/samba-187.8/ samba/source/smbd/reply.c:reply_special(328)
11 Troubleshooting a Service tail -f /var/log/samba/log.smbd Returning domain sid for domain FOOBARBAZ -> S check_ntlm_password: authentication for user [diradmin] -> [diradmin] -> [diradmin] succeeded [2009/08/11 16:09:57, 2, pid=447] /SourceCache/samba/samba-187.8/ samba/source/smbd/reply.c:reply_special(328) netbios connect: name1= name2=foobar01
12 Beware of Red Herrings THE_PROCESS_HAS_FORKED_AND_YOU_CANNOT_USE_THIS_C OREFOUNDATION_FUNCTIONALITY YOU_MUST_EXEC () to debug. The process has forked and you cannot use this CoreFoundation functionality safely. You MUST exec(). Break on THE_PROCESS_HAS_FORKED_AND_YOU_CANNOT_USE_THIS_C OREFOUNDATION_FUNCTIONALITY YOU_MUST_EXEC () to debug. The process has forked and you cannot use this CoreFoundation functionality safely. You MUST exec().
13 Troubleshooting a Server Crash
14 Establishing a timeline
15 Establishing a timeline tail -f /var/log/system.log
16 Establishing a timeline tail -f /var/log/system.log sysctl -a grep boottime
17 Establishing a timeline tail -f /var/log/system.log sysctl -a grep boottime last grep crash
18 admin ttys000 Thu Sep 8 12:26 - crash (4+13:58) admin console Wed Aug 31 12:45 - crash (12+13:38) admin ttys000 Mon Aug 29 11:37 - crash (2+01:07) admin console Tue Aug 23 16:21 - crash (7+20:23) admin console Tue Aug 16 20:42 - crash (6+19:38) admin console Thu Aug 11 09:19 - crash (5+11:22) admin ttys000 Wed Aug 10 17:59 - crash (09:15) admin console Mon Aug 8 10:24 - crash (2+16:50) admin ttys000 Thu Jul 28 11:27 - crash (2+02:37) admin console Thu Jul 28 09:54 - crash (2+04:10) admin ttys000 Fri Jun 24 16:12 - crash (1+01:32) admin console Wed Jun 15 17:50 - crash (9+23:54) admin console Sun Jun 5 22:15 - crash (4+05:28) admin console Fri Jun 3 10:26 - crash (2+11:48) admin ttys000 Thu May 26 18:54 - crash (2+03:29) admin console Thu May 26 18:45 - crash (2+03:39) admin console Sun Apr 10 09:06 - crash (28+06:39) admin ttys000 Wed Mar 30 17:39 - crash (10+15:25) admin console Wed Mar 23 16:23 - crash (17+16:41) admin console Tue Mar 1 16:28 - crash (16+00:36)
19 The Obvious issue
20 The Obvious issue
21 The Obvious issue smbstatus
22 Trouble Shooting Directory Services
23 Trouble Shooting Directory Services
24 Trouble Shooting Directory Services
25 What i d do first is use id id zack.smith
26 What i d do first is use id id zack.smith uid= (zack.smith) gid= (foo\domain users) groups= (foo\domain users), (foo\domain admins),62(netaccounts),12(everyone), 405(com.apple.sharepoint.group.4), (FOO\denied rodc password replication group)
27 What i d do first is use id id zack.smith uid= (zack.smith) gid= (foo\domain users) groups= (foo\domain users), (foo\domain admins),62(netaccounts),12(everyone), 405(com.apple.sharepoint.group.4), (FOO\denied rodc password replication group) id: zack.smith: no such user
28 What i d do first is use id id zack.smith uid= (zack.smith) gid= (foo\domain users) groups= (foo\domain users), (foo\domain admins),62(netaccounts),12(everyone), 405(com.apple.sharepoint.group.4), (FOO\denied rodc password replication group) id: zack.smith: no such user #!/bin/bash if id someuser &>/dev/null; then else echo "user resolution succeeded" echo "user does not exist" fi
29 Rebooted without AD #!/bin/bash ipconfig waitall until ping wallcity.org ; do sleep 1 if!id administrator ; then killall DirectoryService fi done exit
30 Rebooted without AD #!/bin/bash ipconfig waitall until ping wallcity.org ; do sleep 1 if!id administrator ; then killall DirectoryService fi done exit
31 Rebooted without AD #!/bin/bash ipconfig waitall until ping wallcity.org ; do sleep 1 if!id administrator ; then killall DirectoryService fi done exit
32 Rebooted without AD #!/bin/bash ipconfig waitall until ping wallcity.org ; do sleep 1 if!id administrator ; then killall DirectoryService fi done exit 0 killall DirectoryService 10.6
33 Rebooted without AD killall opendirectoryd #!/bin/bash until ping wallcity.org ; do sleep 1 if!id administrator ; then killall opendirectoryd fi done exit
34 Troubleshooting Open Directory
35 Open Directory Database Corruption Monday Tuesday Wednesday
36 Open Directory Database Corruption Monday Tuesday Wednesday
37 Open Directory Database Corruption Monday Tuesday Wednesday Open Directory
38 Open Directory Database Corruption Monday Tuesday Wednesday Open Directory #!/bin/bash for BDB in /var/db/openldap/openldap-data/*.bdb do echo "verifing db $BDB" /usr/bin/db_verify "$BDB" echo "$BDB check failed!" done
39 Example Output
40 Example Output verifing db /var/db/openldap/openldap-data/apple-computers.bdb
41 Example Output verifing db /var/db/openldap/openldap-data/apple-computers.bdb verifing db /var/db/openldap/openldap-data/apple-generateduid.bdb
42 Example Output verifing db /var/db/openldap/openldap-data/apple-computers.bdb verifing db /var/db/openldap/openldap-data/apple-generateduid.bdb verifing db /var/db/openldap/openldap-data/apple-group-memberguid.bdb
43 Example Output verifing db /var/db/openldap/openldap-data/apple-computers.bdb verifing db /var/db/openldap/openldap-data/apple-generateduid.bdb verifing db /var/db/openldap/openldap-data/apple-group-memberguid.bdb verifing db /var/db/openldap/openldap-data/apple-group-nestedgroup.bdb
44 Example Output verifing db /var/db/openldap/openldap-data/apple-computers.bdb verifing db /var/db/openldap/openldap-data/apple-generateduid.bdb verifing db /var/db/openldap/openldap-data/apple-group-memberguid.bdb verifing db /var/db/openldap/openldap-data/apple-group-nestedgroup.bdb verifing db /var/db/openldap/openldap-data/apple-group-realname.bdb
45 Example Output verifing db /var/db/openldap/openldap-data/apple-computers.bdb verifing db /var/db/openldap/openldap-data/apple-generateduid.bdb verifing db /var/db/openldap/openldap-data/apple-group-memberguid.bdb verifing db /var/db/openldap/openldap-data/apple-group-nestedgroup.bdb verifing db /var/db/openldap/openldap-data/apple-group-realname.bdb verifing db /var/db/openldap/openldap-data/apple-realname.bdb
46 Example Output verifing db /var/db/openldap/openldap-data/apple-computers.bdb verifing db /var/db/openldap/openldap-data/apple-generateduid.bdb verifing db /var/db/openldap/openldap-data/apple-group-memberguid.bdb verifing db /var/db/openldap/openldap-data/apple-group-nestedgroup.bdb verifing db /var/db/openldap/openldap-data/apple-group-realname.bdb verifing db /var/db/openldap/openldap-data/apple-realname.bdb verifing db /var/db/openldap/openldap-data/apple-serviceslocator.bdb
47 Example Output verifing db /var/db/openldap/openldap-data/apple-computers.bdb verifing db /var/db/openldap/openldap-data/apple-generateduid.bdb verifing db /var/db/openldap/openldap-data/apple-group-memberguid.bdb verifing db /var/db/openldap/openldap-data/apple-group-nestedgroup.bdb verifing db /var/db/openldap/openldap-data/apple-group-realname.bdb verifing db /var/db/openldap/openldap-data/apple-realname.bdb verifing db /var/db/openldap/openldap-data/apple-serviceslocator.bdb verifing db /var/db/openldap/openldap-data/c.bdb
48 Example Output verifing db /var/db/openldap/openldap-data/apple-computers.bdb verifing db /var/db/openldap/openldap-data/apple-generateduid.bdb verifing db /var/db/openldap/openldap-data/apple-group-memberguid.bdb verifing db /var/db/openldap/openldap-data/apple-group-nestedgroup.bdb verifing db /var/db/openldap/openldap-data/apple-group-realname.bdb verifing db /var/db/openldap/openldap-data/apple-realname.bdb verifing db /var/db/openldap/openldap-data/apple-serviceslocator.bdb verifing db /var/db/openldap/openldap-data/c.bdb verifing db /var/db/openldap/openldap-data/cn.bdb
49 Example Output verifing db /var/db/openldap/openldap-data/apple-computers.bdb verifing db /var/db/openldap/openldap-data/apple-generateduid.bdb verifing db /var/db/openldap/openldap-data/apple-group-memberguid.bdb verifing db /var/db/openldap/openldap-data/apple-group-nestedgroup.bdb verifing db /var/db/openldap/openldap-data/apple-group-realname.bdb verifing db /var/db/openldap/openldap-data/apple-realname.bdb verifing db /var/db/openldap/openldap-data/apple-serviceslocator.bdb verifing db /var/db/openldap/openldap-data/c.bdb verifing db /var/db/openldap/openldap-data/cn.bdb verifing db /var/db/openldap/openldap-data/displayname.bdb
50 Example Output verifing db /var/db/openldap/openldap-data/apple-computers.bdb verifing db /var/db/openldap/openldap-data/apple-generateduid.bdb verifing db /var/db/openldap/openldap-data/apple-group-memberguid.bdb verifing db /var/db/openldap/openldap-data/apple-group-nestedgroup.bdb verifing db /var/db/openldap/openldap-data/apple-group-realname.bdb verifing db /var/db/openldap/openldap-data/apple-realname.bdb verifing db /var/db/openldap/openldap-data/apple-serviceslocator.bdb verifing db /var/db/openldap/openldap-data/c.bdb verifing db /var/db/openldap/openldap-data/cn.bdb verifing db /var/db/openldap/openldap-data/displayname.bdb verifing db /var/db/openldap/openldap-data/dn2id.bdb
51 Example Output verifing db /var/db/openldap/openldap-data/apple-computers.bdb verifing db /var/db/openldap/openldap-data/apple-generateduid.bdb verifing db /var/db/openldap/openldap-data/apple-group-memberguid.bdb verifing db /var/db/openldap/openldap-data/apple-group-nestedgroup.bdb verifing db /var/db/openldap/openldap-data/apple-group-realname.bdb verifing db /var/db/openldap/openldap-data/apple-realname.bdb verifing db /var/db/openldap/openldap-data/apple-serviceslocator.bdb verifing db /var/db/openldap/openldap-data/c.bdb verifing db /var/db/openldap/openldap-data/cn.bdb verifing db /var/db/openldap/openldap-data/displayname.bdb verifing db /var/db/openldap/openldap-data/dn2id.bdb verifing db /var/db/openldap/openldap-data/gidnumber.bdb
52 Example Output verifing db /var/db/openldap/openldap-data/apple-computers.bdb verifing db /var/db/openldap/openldap-data/apple-generateduid.bdb verifing db /var/db/openldap/openldap-data/apple-group-memberguid.bdb verifing db /var/db/openldap/openldap-data/apple-group-nestedgroup.bdb verifing db /var/db/openldap/openldap-data/apple-group-realname.bdb verifing db /var/db/openldap/openldap-data/apple-realname.bdb verifing db /var/db/openldap/openldap-data/apple-serviceslocator.bdb verifing db /var/db/openldap/openldap-data/c.bdb verifing db /var/db/openldap/openldap-data/cn.bdb verifing db /var/db/openldap/openldap-data/displayname.bdb verifing db /var/db/openldap/openldap-data/dn2id.bdb verifing db /var/db/openldap/openldap-data/gidnumber.bdb verifing db /var/db/openldap/openldap-data/givenname.bdb
53 Example Output verifing db /var/db/openldap/openldap-data/apple-computers.bdb verifing db /var/db/openldap/openldap-data/apple-generateduid.bdb verifing db /var/db/openldap/openldap-data/apple-group-memberguid.bdb verifing db /var/db/openldap/openldap-data/apple-group-nestedgroup.bdb verifing db /var/db/openldap/openldap-data/apple-group-realname.bdb verifing db /var/db/openldap/openldap-data/apple-realname.bdb verifing db /var/db/openldap/openldap-data/apple-serviceslocator.bdb verifing db /var/db/openldap/openldap-data/c.bdb verifing db /var/db/openldap/openldap-data/cn.bdb verifing db /var/db/openldap/openldap-data/displayname.bdb verifing db /var/db/openldap/openldap-data/dn2id.bdb verifing db /var/db/openldap/openldap-data/gidnumber.bdb verifing db /var/db/openldap/openldap-data/givenname.bdb verifing db /var/db/openldap/openldap-data/id2entry.bdb
54 Example Output verifing db /var/db/openldap/openldap-data/apple-computers.bdb verifing db /var/db/openldap/openldap-data/apple-generateduid.bdb verifing db /var/db/openldap/openldap-data/apple-group-memberguid.bdb verifing db /var/db/openldap/openldap-data/apple-group-nestedgroup.bdb verifing db /var/db/openldap/openldap-data/apple-group-realname.bdb verifing db /var/db/openldap/openldap-data/apple-realname.bdb verifing db /var/db/openldap/openldap-data/apple-serviceslocator.bdb verifing db /var/db/openldap/openldap-data/c.bdb verifing db /var/db/openldap/openldap-data/cn.bdb verifing db /var/db/openldap/openldap-data/displayname.bdb verifing db /var/db/openldap/openldap-data/dn2id.bdb verifing db /var/db/openldap/openldap-data/gidnumber.bdb verifing db /var/db/openldap/openldap-data/givenname.bdb verifing db /var/db/openldap/openldap-data/id2entry.bdb verifing db /var/db/openldap/openldap-data/iphostnumber.bdb
55 Example Output verifing db /var/db/openldap/openldap-data/apple-computers.bdb verifing db /var/db/openldap/openldap-data/apple-generateduid.bdb verifing db /var/db/openldap/openldap-data/apple-group-memberguid.bdb verifing db /var/db/openldap/openldap-data/apple-group-nestedgroup.bdb verifing db /var/db/openldap/openldap-data/apple-group-realname.bdb verifing db /var/db/openldap/openldap-data/apple-realname.bdb verifing db /var/db/openldap/openldap-data/apple-serviceslocator.bdb verifing db /var/db/openldap/openldap-data/c.bdb verifing db /var/db/openldap/openldap-data/cn.bdb verifing db /var/db/openldap/openldap-data/displayname.bdb verifing db /var/db/openldap/openldap-data/dn2id.bdb verifing db /var/db/openldap/openldap-data/gidnumber.bdb verifing db /var/db/openldap/openldap-data/givenname.bdb verifing db /var/db/openldap/openldap-data/id2entry.bdb verifing db /var/db/openldap/openldap-data/iphostnumber.bdb verifing db /var/db/openldap/openldap-data/l.bdb
56 Example Output verifing db /var/db/openldap/openldap-data/apple-computers.bdb verifing db /var/db/openldap/openldap-data/apple-generateduid.bdb verifing db /var/db/openldap/openldap-data/apple-group-memberguid.bdb verifing db /var/db/openldap/openldap-data/apple-group-nestedgroup.bdb verifing db /var/db/openldap/openldap-data/apple-group-realname.bdb verifing db /var/db/openldap/openldap-data/apple-realname.bdb verifing db /var/db/openldap/openldap-data/apple-serviceslocator.bdb verifing db /var/db/openldap/openldap-data/c.bdb verifing db /var/db/openldap/openldap-data/cn.bdb verifing db /var/db/openldap/openldap-data/displayname.bdb verifing db /var/db/openldap/openldap-data/dn2id.bdb verifing db /var/db/openldap/openldap-data/gidnumber.bdb verifing db /var/db/openldap/openldap-data/givenname.bdb verifing db /var/db/openldap/openldap-data/id2entry.bdb verifing db /var/db/openldap/openldap-data/iphostnumber.bdb verifing db /var/db/openldap/openldap-data/l.bdb verifing db /var/db/openldap/openldap-data/macaddress.bdb
57 Example Output verifing db /var/db/openldap/openldap-data/apple-computers.bdb verifing db /var/db/openldap/openldap-data/apple-generateduid.bdb verifing db /var/db/openldap/openldap-data/apple-group-memberguid.bdb verifing db /var/db/openldap/openldap-data/apple-group-nestedgroup.bdb verifing db /var/db/openldap/openldap-data/apple-group-realname.bdb verifing db /var/db/openldap/openldap-data/apple-realname.bdb verifing db /var/db/openldap/openldap-data/apple-serviceslocator.bdb verifing db /var/db/openldap/openldap-data/c.bdb verifing db /var/db/openldap/openldap-data/cn.bdb verifing db /var/db/openldap/openldap-data/displayname.bdb verifing db /var/db/openldap/openldap-data/dn2id.bdb verifing db /var/db/openldap/openldap-data/gidnumber.bdb verifing db /var/db/openldap/openldap-data/givenname.bdb verifing db /var/db/openldap/openldap-data/id2entry.bdb verifing db /var/db/openldap/openldap-data/iphostnumber.bdb verifing db /var/db/openldap/openldap-data/l.bdb verifing db /var/db/openldap/openldap-data/macaddress.bdb verifing db /var/db/openldap/openldap-data/mail.bdb
58 Example Output verifing db /var/db/openldap/openldap-data/apple-computers.bdb verifing db /var/db/openldap/openldap-data/apple-generateduid.bdb verifing db /var/db/openldap/openldap-data/apple-group-memberguid.bdb verifing db /var/db/openldap/openldap-data/apple-group-nestedgroup.bdb verifing db /var/db/openldap/openldap-data/apple-group-realname.bdb verifing db /var/db/openldap/openldap-data/apple-realname.bdb verifing db /var/db/openldap/openldap-data/apple-serviceslocator.bdb verifing db /var/db/openldap/openldap-data/c.bdb verifing db /var/db/openldap/openldap-data/cn.bdb verifing db /var/db/openldap/openldap-data/displayname.bdb verifing db /var/db/openldap/openldap-data/dn2id.bdb verifing db /var/db/openldap/openldap-data/gidnumber.bdb verifing db /var/db/openldap/openldap-data/givenname.bdb verifing db /var/db/openldap/openldap-data/id2entry.bdb verifing db /var/db/openldap/openldap-data/iphostnumber.bdb verifing db /var/db/openldap/openldap-data/l.bdb verifing db /var/db/openldap/openldap-data/macaddress.bdb verifing db /var/db/openldap/openldap-data/mail.bdb verifing db /var/db/openldap/openldap-data/memberuid.bdb
59 Example Output verifing db /var/db/openldap/openldap-data/apple-computers.bdb verifing db /var/db/openldap/openldap-data/apple-generateduid.bdb verifing db /var/db/openldap/openldap-data/apple-group-memberguid.bdb verifing db /var/db/openldap/openldap-data/apple-group-nestedgroup.bdb verifing db /var/db/openldap/openldap-data/apple-group-realname.bdb verifing db /var/db/openldap/openldap-data/apple-realname.bdb verifing db /var/db/openldap/openldap-data/apple-serviceslocator.bdb verifing db /var/db/openldap/openldap-data/c.bdb verifing db /var/db/openldap/openldap-data/cn.bdb verifing db /var/db/openldap/openldap-data/displayname.bdb verifing db /var/db/openldap/openldap-data/dn2id.bdb verifing db /var/db/openldap/openldap-data/gidnumber.bdb verifing db /var/db/openldap/openldap-data/givenname.bdb verifing db /var/db/openldap/openldap-data/id2entry.bdb verifing db /var/db/openldap/openldap-data/iphostnumber.bdb verifing db /var/db/openldap/openldap-data/l.bdb verifing db /var/db/openldap/openldap-data/macaddress.bdb verifing db /var/db/openldap/openldap-data/mail.bdb verifing db /var/db/openldap/openldap-data/memberuid.bdb verifing db /var/db/openldap/openldap-data/mobile.bdb
60 Example Output verifing db /var/db/openldap/openldap-data/apple-computers.bdb verifing db /var/db/openldap/openldap-data/apple-generateduid.bdb verifing db /var/db/openldap/openldap-data/apple-group-memberguid.bdb verifing db /var/db/openldap/openldap-data/apple-group-nestedgroup.bdb verifing db /var/db/openldap/openldap-data/apple-group-realname.bdb verifing db /var/db/openldap/openldap-data/apple-realname.bdb verifing db /var/db/openldap/openldap-data/apple-serviceslocator.bdb verifing db /var/db/openldap/openldap-data/c.bdb verifing db /var/db/openldap/openldap-data/cn.bdb verifing db /var/db/openldap/openldap-data/displayname.bdb verifing db /var/db/openldap/openldap-data/dn2id.bdb verifing db /var/db/openldap/openldap-data/gidnumber.bdb verifing db /var/db/openldap/openldap-data/givenname.bdb verifing db /var/db/openldap/openldap-data/id2entry.bdb verifing db /var/db/openldap/openldap-data/iphostnumber.bdb verifing db /var/db/openldap/openldap-data/l.bdb verifing db /var/db/openldap/openldap-data/macaddress.bdb verifing db /var/db/openldap/openldap-data/mail.bdb verifing db /var/db/openldap/openldap-data/memberuid.bdb verifing db /var/db/openldap/openldap-data/mobile.bdb...
61 Open Directory Replication Issues Master Replica
62 Open Directory Replication Issues Master Replica
63 Open Directory Replication Issues Master Replica #!/bin/bash ls -l /var/db/openldap/openldap-data/*.bdb /usr/bin/wc -l
64 Count your slots #!/bin/bash /usr/sbin/mkpassdb -dump /usr/bin/grep '^slot' /usr/bin/wc -l >/tmp/`/bin/hostname`.txt
65 Checking Password Server Replication./thescriptbelow "/path/to/odmaster.txt" "/path/to/odrep.txt" #!/bin/bash IFS=$'\n' for LINE in `/bin/cat "$1"` ; do SLOT_ID="`echo "$LINE" /usr/bin/awk '{print $3}'`" if! /usr/bin/grep "$SLOT_ID" "$2" &>/dev/null ; then echo "Missing entry $SLOT_ID: $LINE" fi done 10.6
66 Checking Password Server Replication #!/bin/bash /usr/sbin/mkpassdb -dump /usr/bin/grep '^slot' >/tmp/`/bin/hostname`.txt./thescriptbelow "/path/to/odmaster.txt" "/path/to/odrep.txt" #!/bin/bash IFS=$'\n' for LINE in `/bin/cat "$1"` ; do SLOT_ID="`echo "$LINE" /usr/bin/awk '{print $3}'`" if! /usr/bin/grep "$SLOT_ID" "$2" &>/dev/null ; then echo "Missing entry $SLOT_ID: $LINE" fi done 10.6
67 Is LDAP server Running? ps -axww grep sla[p] malkin.wallcity.org ( ) 76?? 9:50.72 /usr/libexec/slapd -d 0 -h ldap:/// ldapi://%2fvar%2frun%2fldapi
68 Password Server is Running? ps -axww grep Passwor[d] malkin.wallcity.org ( ) 88?? 251:13.97 /usr/sbin/passwordservice -n 10.6
69
70 dscl authonly #!/bin/bash AD='/Active Directory/wallcity.org' if dscl $AD -authonly zack.smith "d0gc4t" ; then echo "auth succeeded" else echo "auth failed" fi 10.6 #!/bin/bash AD='/Active Directory/WALLCITY' if dscl $AD -authonly zack.smith "d0gc4t" ; then echo "auth succeeded" else echo "auth failed" fi 10.7
71 Checking Kerberos Authentication kinit zack.smith Please enter the password for klist Kerberos 5 ticket cache: 'API:Initial default ccache' Default principal: zack.smith@ Valid Starting Expires Service Principal 06/16/10 18:16:40 06/17/10 04:16:40 krbtgt/ " renew until 06/23/10 18:16:40
72 A few random tips
73 Some interesting netboot stuff
74 Load balancing netboot #!/usr/bin/python import sys # The exits string import plistlib # The property list library import subprocess # Sub process import urllib2, base64 username = "nonprivlages" password = "password" server = "netboot.server.com" request = urllib2.request(" + server + ":311/commands/ servermgr_netboot?") base64string = base64.encodestring('%s:%s' % (username, password)).replace('\n', '') request.add_header("authorization", "Basic %s" % base64string) httpresult = urllib2.urlopen(request) serveradminxml = httpresult.read() plist = plistlib.readplistfromstring(serveradminxml)
75 Finding the request data defaults write com.apple.serveradmin UseDebugMenu YES
76 Load balancing netboot def getusersarray(): netbootclients = 0 for usersarray in plist['usersarray']: idlesecs = usersarray['idlesecs'] if idlesecs < idletime : netbootclients += 1 print "Content-type: text/html\n\n" print "<html><head>" print "<title>connected Netboot Clients</title>" print "</head>" print "<body>" print "%s" % (netbootclients) print "</body>" print "</html>" getusersarray() sys.exit(0)
77
78
79 Planning for disaster
80 Please stand by...
81 Automatically Backing Up Open Directory /usr/sbin/serveradmin dirserv:backuparchiveparams:archivepassword = $PASS dirserv:backuparchiveparams:archivepath = $PLACE dirserv:command = backuparchive
82 Open Directory Backup
83
84 serveradmin settings for SERVICE in $(serveradmin list) ; do declare STATUS="$( serveradmin status $SERVICE 2>/dev/null awk '/.*:state/{print $NF;exit}')" if [ "$STATUS" = '"RUNNING"' ] ; then echo $SERVICE is running serveradmin settings $SERVICE \ > $SERVICE.serveradmin" fi done 10.6/10.7
85 Automated Settings Backup sabackup.sourceforge.net
86 Automated Settings Backup
87 Automated Settings Backup Syntax: sabackup --outputdir="/sabackups/" [options] sabackup --outputfile="/sabackup.dmg" [--services=afp,dns,ftp] [options] sabackup --outputfile="/sabackup.plist" --nodmg [--service=dns] [options] sabackup --plist="/library/preferences/com.318.sabackup.plist" Flags: --plist= ## Path to a plist to read configuration information from. This will override any other provided options! --outputfile= ## path to save exported plist or sparseimage file. --outputdir= ## path to directory for export. If multiple services are specified, they will be saved in a service-specific subdirectories under 'dir' --usedmg --nodmg ## When specified, backups will be saved in the form of a sparseimage file, which contain versioned backups of service configs. Defaults to true with the '--outputfile=' option and defaults to false with the '--outputdir' option. if '--useimage' is used with '--outputdir', then a disk image will be made based on the machine's hostname: "myhost.local_sabackups.sparseimage" ## When used in conjunction with the '--outputfile' option, output will be in the form of an XML plist of the specified services. --nosubdirs ## Disables the use of service-specific subdirectories --service= ## used with '--outputfile' option to denote which service is to be saved to the specific file. --services= ## Used with --outputdir option to denote which services will be backed up. Supported Services: "all" - akin to 'serveradmin settings all' "running" - backs up all running services
88 sabackup structure
89 Integration with existing backup provider /usr/local/bin/sabackup.py --plist
90 Usage /usr/local/bin/sabackup.py --plist=/library/preferences/com.318.sabackup.plist 2>/dev/null
91 Configuration
92 Open Directory Restore
93 15 min restores
94 Measure twice
95 Measure twice scutil --get HostName
96 Measure twice scutil --get HostName dig -x
97 Measure twice scutil --get HostName dig -x dig some.server.com
98 #!/bin/bash D=',' IFS=$'\n' Measure twice scutil --get HostName dig -x dig some.server.com for LINE in $(cat "$1") ; do done declare COL1="$(echo $LINE awk -F"$D" '{print $1}')" host $COL1 &>/dev/null echo "$COL1 not working"
99 applicableserverspredicate <?xml version="1.0" encoding="utf-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" " <plist version="1.0"> <dict> <key>versionnumber</key> <integer>4</integer> <key>applicableserverspredicate</key> <string>serialnumber ==[c] "H00391KB10S"</string> <key>config</key> <dict> SerialNumber ==[c] "H00391KB10S"
100 AutoServerSetup.plist </dict> <key>encryption</key> <integer>0</integer> <key>maximumosversion</key> <string>10.7</string> <key>minimumosversion</key> <string>10.6</string> </dict> </plist>
101 Find & Replace # NTP_SERVER if [ "${#NTP_SERVER}" -gt 0 ] ; then cat "$TEMPLATE" $awk '{gsub(/ NTP /,ENVIRON["NTP"],$0) print}' >"$MY_HOST_NAME.plist" else echo "NTP_SERVER is null for $MY_HOST_NAME" exit 1 fi
102 Hardware Independent
103
104
105 Auto Server Setup /Library/Logs/ServerAssistant.log
106 I am now on vacation for 3 weeks
Integrating with Active Directory. [email protected] MacSysAdmin 2010
Integrating with Active Directory [email protected] MacSysAdmin 2010 Remember Identification Authentication Authorization (and client management) 75 minutes Why Integrate 3 Challenges Terminology Agreement
Integrating Mac OS X 10.6 with Active Directory. 1 April 2010
Integrating Mac OS X 10.6 with Active Directory 1 April 2010 Introduction Apple Macintosh Computers running Mac OS X 10.6 can be integrated with the Boston University Active Directory to allow use of Active
4PSA Total Backup 3.0.0. User's Guide. for Plesk 10.0.0 and newer versions
4PSA Total Backup 3.0.0 for Plesk 10.0.0 and newer versions User's Guide For more information about 4PSA Total Backup, check: http://www.4psa.com Copyright 2009-2011 4PSA. User's Guide Manual Version 84359.5
Backing Up and Restoring Data
Backing Up and Restoring Data Cisco Unity Express backup and restore functions use an FTP server to store and retrieve data. The backup function copies the files from the Cisco Unity Express application
ACS 5.x and later: Integration with Microsoft Active Directory Configuration Example
ACS 5.x and later: Integration with Microsoft Active Directory Configuration Example Document ID: 113571 Contents Introduction Prerequisites Requirements Components Used Conventions Background Information
VDCF - Virtual Datacenter Control Framework for the Solaris TM Operating System
VDCF - Virtual Datacenter Control Framework for the Solaris TM Operating System VDCF Blueprint Software Deployment Version 1.1 August 2014 Copyright 2005-2014 JomaSoft GmbH All rights reserved. [email protected]
Open Directory & OpenLDAP. David M. O Rourke Engineering Manager
Open Directory & OpenLDAP David M. O Rourke Engineering Manager Overview Background on Apple s Open Directory Technology (8 minutes) What is it What is Directory Services How has Apple integrated OpenLDAP
System Admin Module User Guide. Schmooze Com Inc.
Schmooze Com Inc. Chapters Overview Using the Module DDNS DNS Email Setup FTP Server Intrusion Detection License Network Settings Notification Settings Port Management Power Options Storage Time Zone Updates
AD Integration & Home Folders
AD Integration & Home Folders David Acland Technical Director at Amsys @davidacland ACSE Training Projects & Support What the heck s AD? Uh-oh AD mastered! What I ll be talking about AD Integration Troubleshooting
Maintaining the Central Management System Database
CHAPTER 12 Maintaining the Central Management System Database This chapter describes how to maintain the Central Management System (CMS) database using CLI commands as well as using the Content Distribution
Open Mic on IBM Notes Traveler Best Practices. Date: 11 July, 2013
Open Mic on IBM Notes Traveler Best Practices Date: 11 July, 2013 Open Mic Team Jayesh Parmar - IBM ICS Support engineer Presenter Shrikant Ahire - IBM ICS Support engineer Presenter Ranjit Rai - IBM ICS
Backup and Recovery Procedures
CHAPTER 10 This chapter provides Content Distribution Manager database backup and ACNS software recovery procedures. This chapter contains the following sections: Performing Backup and Restore Operations
STEP 4 : GETTING LIGHTTPD TO WORK ON YOUR SEAGATE GOFLEX SATELLITE
STEP 4 : GETTING LIGHTTPD TO WORK ON YOUR SEAGATE GOFLEX SATELLITE Note : Command Lines are in red. Congratulations on following all 3 steps. This is the final step you need to do to get rid of the old
Instructions for Adding a MacOS 10.4.x Client to ASURITE
Instructions for Adding a MacOS 10.4.x Client to ASURITE Before beginning, it would be prudent not to have an account with the same username and password as your Active Directory account. For DHCP Workstations:
Configuring Squid Proxy, Active Directory Authentication and SurfProtect ICAP Access
Configuring Squid Proxy, Active Directory Authentication and SurfProtect ICAP Access Contents Introduction 3 To Configure 4 Squid Server... 4 Windows Domain Controller... 4 Configuration 4 DNS... 4 NTP...
Use Enterprise SSO as the Credential Server for Protected Sites
Webthority HOW TO Use Enterprise SSO as the Credential Server for Protected Sites This document describes how to integrate Webthority with Enterprise SSO version 8.0.2 or 8.0.3. Webthority can be configured
Univention Corporate Server. Extended domain services documentation
Univention Corporate Server Extended domain services documentation 2 Table of Contents 1. Integration of Ubuntu clients into a UCS domain... 4 1.1. Integration into the LDAP directory and the SSL certificate
Configuring MailArchiva with Insight Server
Copyright 2009 Bynari Inc., All rights reserved. No part of this publication may be reproduced or transmitted in any form or by any means, electronic or mechanical, including photocopy, recording, or any
Managing Software and Configurations
55 CHAPTER This chapter describes how to manage the ASASM software and configurations and includes the following sections: Saving the Running Configuration to a TFTP Server, page 55-1 Managing Files, page
RSA Authentication Manager 7.1 Basic Exercises
RSA Authentication Manager 7.1 Basic Exercises Contact Information Go to the RSA corporate web site for regional Customer Support telephone and fax numbers: www.rsa.com Trademarks RSA and the RSA logo
Mass Deploying Bomgar Software to Macs
Mass Deploying Bomgar Software to Macs Starting with Bomgar 14.2, the installer les for representative consoles and Jump Clients have been tweaked to help you mass deploy Bomgar software to your Macs.
Client Management - MCX
apple Client Management - MCX John DeTroye Senior Consulting Engineer Apple Education Session PSUMAC301 1 Defining Managed Client 2 Managed Client is Usage Management Establish a consistent user experience
Best Practices: Integrating Mac OS X with Active Directory. Technical White Paper April 2009
Best Practices: Integrating Mac OS X Technical White Paper April 2009 2 Contents Page 3 Page 5 Page 9 Page 10 Page 11 Page 12 Apple s Built-In Solution How to Integrate Mac OS X Getting Started dsconfigad
RHEL Clients to AD Integrating RHEL clients to Active Directory
RHEL Clients to AD Integrating RHEL clients to Active Directory Presenter Dave Sullivan Sr. TAM, Red Hat 2013-09-03 Agenda Review Dmitri Pal and Simo Sorce Preso Legacy RHEL hook to AD RHEL Direct--->sssd--->AD
This presentation will discuss how to troubleshoot different types of project creation issues with Information Server DataStage version 8.
This presentation will discuss how to troubleshoot different types of project creation issues with Information Server DataStage version 8. Page 1 of 29 The objectives of this module are to list the causes
1 Introduction FrontBase is a high performance, scalable, SQL 92 compliant relational database server created in the for universal deployment.
FrontBase 7 for ios and Mac OS X 1 Introduction FrontBase is a high performance, scalable, SQL 92 compliant relational database server created in the for universal deployment. On Mac OS X FrontBase can
Apple Certified Specialist - Directory Services ACS-DS 10.6
Apple Certified Specialist - Directory Services ACS-DS 10.6 NOTEBOOK Apple Certified Specialist Directory Services 10.6 8 Disclaimer 8 Accessing the Local Directory Service 9 1. Define the following terms:
Charles Firth [email protected]. Managing Macs in a Windows World
Charles Firth [email protected] Managing Macs in a Windows World Prerequisites Familiarity with Windows Active Directory networks Interest in Macintosh OSX integration and support Basic understanding
Only LDAP-synchronized users can access SAML SSO-enabled web applications. Local end users and applications users cannot access them.
This chapter provides information about the Security Assertion Markup Language (SAML) Single Sign-On feature, which allows administrative users to access certain Cisco Unified Communications Manager and
Exam 70-411: Administrating Windows Server 2012 R2. Course Overview
Exam 70-411: Administrating Windows Server 2012 R2 Course Overview This course teaches students server deployment and image management, managing servers and updates, file and print services, configuring
Active Directory Requirements and Setup
Active Directory Requirements and Setup The information contained in this document has been written for use by Soutron staff, clients, and prospective clients. Soutron reserves the right to change the
qliqdirect Active Directory Guide
qliqdirect Active Directory Guide qliqdirect is a Windows Service with Active Directory Interface. qliqdirect resides in your network/server and communicates with qliqsoft cloud servers securely. qliqdirect
Best Practices: Integrating Mac OS X with Active Directory. Technical White Paper September 2007
Best Practices: with Active Directory Technical White Paper September 2007 Contents Page 3 Page 4 Page 8 Page 10 Page 11 Page 13 Apple s Built-In Solution How to Integrate Mac OS X with Active Directory
Outline SSS6425 - Configuring and Troubleshooting Windows Server 2008 Active Directory
Outline SSS6425 - Configuring and Troubleshooting Windows Server 2008 Active Directory Duration: Four consecutive Saturdays About this Course This instructor-led course provides the knowledge and skills
Windows Administration Terminal Services, AD and the Windows Registry. INLS 576 Spring 2011 Tuesday, February 24, 2011
Windows Administration Terminal Services, AD and the Windows Registry INLS 576 Spring 2011 Tuesday, February 24, 2011 Terminal Services Uses RDP (Remote Desktop Protocol), relies on TCP/IP, and falls under
FileNet P8 Platform Directory Service Migration Guide
FileNet P8 Platform Directory Service Migration Guide Release 3.5.1 November 2005 FileNet is a registered trademark of FileNet Corporation. All other product and brand names are trademarks or registered
Configuring Color Access on the WorkCentre 7120 Using Microsoft Active Directory Customer Tip
Configuring Color Access on the WorkCentre 7120 Using Microsoft Active Directory Customer Tip October 21, 2010 Overview This document describes how to limit access to color copying and printing on the
COMMANDS 1 Overview... 1 Default Commands... 2 Creating a Script from a Command... 10 Document Revision History... 10
LabTech Commands COMMANDS 1 Overview... 1 Default Commands... 2 Creating a Script from a Command... 10 Document Revision History... 10 Overview Commands in the LabTech Control Center send specific instructions
How To Set Up A Backupassist For An Raspberry Netbook With A Data Host On A Nsync Server On A Usb 2 (Qnap) On A Netbook (Qnet) On An Usb 2 On A Cdnap (
WHITEPAPER BackupAssist Version 5.1 www.backupassist.com Cortex I.T. Labs 2001-2008 2 Contents Introduction... 3 Hardware Setup Instructions... 3 QNAP TS-409... 3 Netgear ReadyNas NV+... 5 Drobo rev1...
2 Downloading Access Manager 3.1 SP4 IR1
Novell Access Manager 3.1 SP4 IR1 Readme May 2012 Novell This Readme describes the Novell Access Manager 3.1 SP4 IR1 release. Section 1, Documentation, on page 1 Section 2, Downloading Access Manager 3.1
Migration of Windows Intranet domain to Linux Domain Moving Linux to a Wider World
Journal of Basic and Applied Engineering Research pp. 55-59 Krishi Sanskriti Publications http://www.krishisanskriti.org/jbaer.html Migration of Windows Intranet domain to Linux Domain Moving Linux to
Configure Single Sign on Between Domino and WPS
Configure Single Sign on Between Domino and WPS What we are doing here? Ok now we have the WPS server configured and running with Domino as the LDAP directory. Now we are going to configure Single Sign
Installation Guide for WebSphere Application Server (WAS) and its Fix Packs on AIX V5.3L
Installation Guide for WebSphere Application Server (WAS) and its Fix Packs on AIX V5.3L Introduction: This guide is written to help any person with little knowledge in AIX V5.3L to prepare the P Server
This appendix describes the following procedures: Cisco ANA Registry Backup and Restore Oracle Database Backup and Restore
APPENDIXA This appendix describes the following procedures: Cisco ANA Registry Oracle Database Cisco ANA Registry This section describes the Cisco ANA Registry backup and restore procedure. Overview Provides
Active Directory Infrastructure Design Document
Active Directory Infrastructure Design Document Written By Sainath KEV Microsoft MVP Directory Services Microsoft Author TechNet Magazine, Microsoft Operations Framework Microsoft Speaker - Singapore Document
Aqua Connect Load Balancer User Manual (Linux)
Aqua Connect Load Balancer User Manual (Linux) Table of Contents About Aqua Connect Load Balancer... 3 System Requirements... 4 Mac OS X ACRDS Server Computer Node Setup... 5 Managing Inactive Sessions...
CLC Server Command Line Tools USER MANUAL
CLC Server Command Line Tools USER MANUAL Manual for CLC Server Command Line Tools 2.5 Windows, Mac OS X and Linux September 4, 2015 This software is for research purposes only. QIAGEN Aarhus A/S Silkeborgvej
Managed Appliance Installation Guide
Managed Appliance Installation Guide Introduction The CrashPlan PROe managed appliance is a fully managed system that requires minimal user maintenance. This guide is intended to assist you in installing,
Installing a Symantec Backup Exec Agent on a SnapScale Cluster X2 Node or SnapServer DX1 or DX2. Summary
Technical Bulletin Application Note April 2013 Installing a Symantec Backup Exec Agent on a SnapScale Cluster X2 Node or SnapServer DX1 or DX2 Summary This application note describes how to install the
Introduction to Operating Systems
Introduction to Operating Systems It is important that you familiarize yourself with Windows and Linux in preparation for this course. The exercises in this book assume a basic knowledge of both of these
Domain Controller Failover When Using Active Directory
Domain Controller Failover When Using Active Directory Domain Controller Failover When Using Active Directory published January 2002 NSI and Double-Take are registered trademarks of Network Specialists,
Step- by- Step guide to extend Credential Sync between IBM WebSphere Portal 8.5 credential vault and Active Directory 2012 using Security Directory
Step- by- Step guide to extend Credential Sync between IBM WebSphere Portal 8.5 credential vault and Active Directory 2012 using Security Directory Integrator (ex TDI) on Red- Hat (part 3) Summary STEP-
DC Agent Troubleshooting
DC Agent Troubleshooting Topic 50320 DC Agent Troubleshooting Web Security Solutions v7.7.x, 7.8.x 27-Mar-2013 This collection includes the following articles to help you troubleshoot DC Agent installation
VERALAB LDAP Configuration Guide
VERALAB LDAP Configuration Guide VeraLab Suite is a client-server application and has two main components: a web-based application and a client software agent. Web-based application provides access to
Prerequisites and Configuration Guide
Prerequisites and Configuration Guide Informatica Support Console (Version 2.0) Table of Contents Chapter 1: Overview.................................................... 2 Chapter 2: Minimum System Requirements.................................
Dell KACE K1000 System Management Appliance Version 5.4. Service Desk Administrator Guide
Dell KACE K1000 System Management Appliance Version 5.4 Service Desk Administrator Guide October 2012 2004-2012 Dell Inc. All rights reserved. Reproduction of these materials in any manner whatsoever without
DeployStudio Server Quick Install
DeployStudio Server Quick Install v1.7.0 The DeployStudio Team [email protected] Requirements OS X 10.7.5 to 10.11.1 DeployStudioServer_v1.7.x.pkg and later NetBoot based deployment 100 Mb/s switched
How To Script Administrative Tasks In Marklogic Server
Scripting Administrative Tasks Guide 1 MarkLogic 8 February, 2015 Last Revised: 8.0-1, February, 2015 Copyright 2015 MarkLogic Corporation. All rights reserved. Table of Contents Table of Contents Scripting
RSA Authentication Manager 7.1 to 8.1 Migration Guide: Upgrading RSA SecurID Appliance 3.0 On Existing Hardware
RSA Authentication Manager 7.1 to 8.1 Migration Guide: Upgrading RSA SecurID Appliance 3.0 On Existing Hardware Contact Information Go to the RSA corporate website for regional Customer Support telephone
IceWarp to IceWarp Server Migration
IceWarp to IceWarp Server Migration Registered Trademarks iphone, ipad, Mac, OS X are trademarks of Apple Inc., registered in the U.S. and other countries. Microsoft, Windows, Outlook and Windows Phone
Managing Users and Identity Stores
CHAPTER 8 Overview ACS manages your network devices and other ACS clients by using the ACS network resource repositories and identity stores. When a host connects to the network through ACS requesting
Backing Up TestTrack Native Project Databases
Backing Up TestTrack Native Project Databases TestTrack projects should be backed up regularly. You can use the TestTrack Native Database Backup Command Line Utility to back up TestTrack 2012 and later
HP A-IMC Firewall Manager
HP A-IMC Firewall Manager Configuration Guide Part number: 5998-2267 Document version: 6PW101-20110805 Legal and notice information Copyright 2011 Hewlett-Packard Development Company, L.P. No part of this
1 Introduction. Ubuntu Linux Server & Client and Active Directory. www.exacq.com Page 1 of 14
Ubuntu Linux Server & Client and Active Directory 1 Introduction For an organization using Active Directory (AD) for user management of information technology services, integrating exacqvision into the
Centralized Mac Home Directories On Windows Servers: Using Windows To Serve The Mac
Making it easy to deploy, integrate and manage Macs, iphones and ipads in a Windows environment. Centralized Mac Home Directories On Windows Servers: Using Windows To Serve The Mac 2011 ENTERPRISE DEVICE
Best Practices Guide for NerveCenter System and Security Administrators. Windows and UNIX Version 5.x Version 6.x. July 2011 NCBPSA5200-05
Best Practices Guide for NerveCenter System and Security Administrators Windows and UNIX Version 5.x Version 6.x July NCBPSA5200-05 Copyright Portions Copyright 1989- LogMatrix, Inc. / OpenService, Inc.
Configuring DNS on Cisco Routers
Configuring DNS on Cisco Routers Document ID: 24182 Contents Introduction Prerequisites Requirements Components Used Conventions Setting Up a Router to Use DNS Lookups Troubleshooting You Can Ping a Web
Remote Configuration for FileBrowser
Remote Configuration for FileBrowser Page 1 Remote Configuration for FileBrowser Introduction The ability to create and read settings files is built into all versions of FileBrowser. At its simplest, this
3.1 Connecting to a Router and Basic Configuration
3.1 Connecting to a Router and Basic Configuration Objective This lab will focus on the ability to connect a PC to a router in order to establish a console session and observe the user interface. A console
Incremental Backup Script. Jason Healy, Director of Networks and Systems
Incremental Backup Script Jason Healy, Director of Networks and Systems Last Updated Mar 18, 2008 2 Contents 1 Incremental Backup Script 5 1.1 Introduction.............................. 5 1.2 Design Issues.............................
FileMaker Server 7. Administrator s Guide. For Windows and Mac OS
FileMaker Server 7 Administrator s Guide For Windows and Mac OS 1994-2004, FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker is a trademark
Administration Guide. BlackBerry Resource Kit for BlackBerry Enterprise Service 10. Version 10.2
Administration Guide BlackBerry Resource Kit for BlackBerry Enterprise Service 10 Version 10.2 Published: 2015-11-12 SWD-20151112124107981 Contents Overview: BlackBerry Enterprise Service 10... 8 Overview:
Configuring Integrated Windows Authentication for Oracle WebLogic with SAS 9.2 Web Applications
Configuring Integrated Windows Authentication for Oracle WebLogic with SAS 9.2 Web Applications Copyright Notice The correct bibliographic citation for this manual is as follows: SAS Institute Inc., Configuring
How to Configure Captive Portal
How to Configure Captive Portal Captive portal is one of the user identification methods available on the Palo Alto Networks firewall. Unknown users sending HTTP or HTTPS 1 traffic will be authenticated,
Handle Tool. User Manual
User Manual Corporation for National Research Initiatives Version 2 November 2015 Table of Contents 1. Start the Handle Tool... 3 2. Default Window... 3 3. Console... 5 4. Authentication... 6 5. Lookup...
Chapter Thirteen (b): Using Active Directory Integration
Chapter Thirteen (b): Using Active Directory Integration Summary of Chapter: How to add a User to your Net/Cache/SecurePilot that will match your Active Directory Security Group. How to set-up your Net/Cache/SecurePilot
MCSE Objectives. Exam 70-236: TS:Exchange Server 2007, Configuring
MCSE Objectives Exam 70-236: TS:Exchange Server 2007, Configuring Installing and Configuring Microsoft Exchange Servers Prepare the infrastructure for Exchange installation. Prepare the servers for Exchange
MCSE 2003. Core exams (Networking) One Client OS Exam. Core Exams (6 Exams Required)
MCSE 2003 Microsoft Certified Systems Engineer (MCSE) candidates on the Microsoft Windows Server 2003 track are required to satisfy the following requirements: Core Exams (6 Exams Required) Four networking
Hyper-V backup implementation guide
Hyper-V backup implementation guide A best practice guide for Hyper-V backup administrators. www.backup-assist.ca Contents 1. Planning a Hyper-V backup... 2 Hyper-V backup considerations... 2 2. Hyper-V
Telnet, Console and AUX Port Passwords on Cisco Routers Configuration Example
Telnet, Console and AUX Port Passwords on Cisco Routers Configuration Example Document ID: 45843 Introduction Prerequisites Requirements Components Used Conventions Background Information Configure Passwords
Cisco ISE Command-Line Interface
This chapter provides information on the Cisco Identity Services Engine (Cisco ISE) command-line interface (CLI) that you can use to configure and maintain Cisco ISE. Cisco ISE Administration and Configuration
Use QNAP NAS for Backup
Use QNAP NAS for Backup BACKUP EXEC 12.5 WITH QNAP NAS Copyright 2010. QNAP Systems, Inc. All Rights Reserved. V1.0 Document revision history: Date Version Changes Apr 2010 1.0 Initial release Note: Information
ISE TACACS+ Configuration Guide for Cisco NX-OS Based Network Devices. Secure Access How-to User Series
ISE TACACS+ Configuration Guide for Cisco NX-OS Based Network Devices Secure Access How-to User Series Author: Technical Marketing, Policy and Access, Security Business Group, Cisco Systems Date: January
Blackboard Open Source Monitoring
Blackboard Open Source Monitoring By Greg Lloyd Submitted to the Faculty of the School of Information Technology in Partial Fulfillment of the Requirements for the Degree of Bachelor of Science in Information
MapGuide Open Source Repository Management Back up, restore, and recover your resource repository.
MapGuide Open Source Repository Management Back up, restore, and recover your resource repository. Page 1 of 5 Table of Contents 1. Introduction...3 2. Supporting Utility...3 3. Backup...4 3.1 Offline
Acronis Backup & Recovery 11.5 Quick Start Guide
Acronis Backup & Recovery 11.5 Quick Start Guide Applies to the following editions: Advanced Server for Windows Virtual Edition Advanced Server SBS Edition Advanced Workstation Server for Linux Server
escan SBS 2008 Installation Guide
escan SBS 2008 Installation Guide Following things are required before starting the installation 1. On SBS 2008 server make sure you deinstall One Care before proceeding with installation of escan. 2.
What s New in Propalms VPN 3.5?
What s New in Propalms VPN 3.5? Contents Improved Management Console Interface... 2 Inline Help on Management Console... 2 Graphical Dashboard on Management Console... 2 Multiple Authentication Server
WHMCS LUXCLOUD MODULE
èè WHMCS LUXCLOUD MODULE Update: 02.02.2015 Version 2.0 This information is only valid for partners who use the WHMCS module (v2.0 and higher). 1.1 General overview 1.2 Installing the plugin Go to your
Cannot send Autosupport e-mail, error message: Unknown User
Cannot send Autosupport e-mail, error message: Unknown User Symptoms Unable to send Autosupport e-mails and the following error message is reported: asup.smtp.fail http://now.netapp.com/eservice/ems?emsaction=details&eventid=200573&software=ontap&em
Using Time Machine to Backup Multiple Mac Clients to SNC NAS and 1000
Using Time Machine to Backup Multiple Mac Clients to SNC NAS and 1000 Application Note Abstract This application note describes how to use Time Machine to backup multiple Mac clients to SNC NAS and 1000.
Review Quiz 1. What is the stateful firewall that is built into Mac OS X and Mac OS X Server?
----------------------------- Chapter 1 PLANNING SYSTEM 1. What is the formal definition of utilization? 2. Name the common units in which heat load is measured. 3. What is the easiest way to determine
How to configure MAC authentication on a ProCurve switch
An HP ProCurve Networking Application Note How to configure MAC authentication on a ProCurve switch Contents 1. Introduction... 3 2. Prerequisites... 3 3. Network diagram... 3 4. Configuring the ProCurve
Upgrading VMware Identity Manager Connector
Upgrading VMware Identity Manager Connector VMware Identity Manager This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new
Configuring TACACS+, RADIUS, and Kerberos on Cisco Catalyst Switches
Configuring TACACS+, RADIUS, and Kerberos on Cisco alyst Switches Document ID: 13847 Contents Introduction Prerequisites Requirements Components Used Conventions Background Information Configuration Steps
HELP DOCUMENTATION SSRPM WEB INTERFACE GUIDE
HELP DOCUMENTATION SSRPM WEB INTERFACE GUIDE Copyright 1998-2013 Tools4ever B.V. All rights reserved. No part of the contents of this user guide may be reproduced or transmitted in any form or by any means
Backing up the Embedded Oracle database of a Red Hat Network Satellite
Backing up the Embedded Oracle database of a Red Hat Network Satellite By Melissa Goldin and Vladimir Zlatkin Abstract This document will help you create a backup of the Oracle database of a Red Hat Network
Monitoring GSS Operation
CHAPTER 9 The GSS software includes a number of tools that allow you to monitor the operating status of the GSS devices on your GSS network. These tools include CLI-based commands and the primary GSSM
