Difference between revisions of "Open Directory"

From OpenKM Documentation
Jump to: navigation, search
(Created page with 'Here are some tips on OSX Open Directory: * '''Create user''': dscl . -create /Users/openkm * '''Assign shell''': dscl . -create /Users/openkm UserShell /bin/bash * '''Assign us…')
 
 
(6 intermediate revisions by the same user not shown)
Line 1: Line 1:
Here are some tips on OSX Open Directory:
+
Here are some tips on OS X Open Directory:
  
 
* '''Create user''': dscl . -create /Users/openkm
 
* '''Create user''': dscl . -create /Users/openkm
Line 11: Line 11:
 
More on OpenDirectory and the dscl Tool at
 
More on OpenDirectory and the dscl Tool at
 
[http://developer.apple.com/mac/library/documentation/Porting/Conceptual/PortingUnix/intro/intro.html Introduction to Porting UNIX/Linux Applications to Mac OS X].
 
[http://developer.apple.com/mac/library/documentation/Porting/Conceptual/PortingUnix/intro/intro.html Introduction to Porting UNIX/Linux Applications to Mac OS X].
 +
 +
See also:
 +
* [[Testing LDAP configuration]]
 +
* [http://forum.openkm.com/viewtopic.php?f=13&t=3535 Forum: Usuario administrador LDAP v.4]
 +
* [http://primalcortex.wordpress.com/2007/11/28/jboss-and-jaas-debug/ JBoss and JAAS debug]
 +
 +
[[Category: Installation Guide]]

Latest revision as of 20:37, 1 December 2012

Here are some tips on OS X Open Directory:

  • Create user: dscl . -create /Users/openkm
  • Assign shell: dscl . -create /Users/openkm UserShell /bin/bash
  • Assign user name: dscl . -create /Users/openkm RealName "OpenKM user"
  • Search UID: dscl . -search /Users uid 503
  • Assign UID: dscl . -create /Users/openkm UniqueID 503
  • Assign user home: dscl . -create /Users/openkm NFSHomeDirectory /opt/openkm
  • Assign password: dscl . -passwd /Users/openkm xxxxxx

More on OpenDirectory and the dscl Tool at Introduction to Porting UNIX/Linux Applications to Mac OS X.

See also: