Sunday, June 13, 2010

Setting OpenDS on Ubuntu 10.04

1. http://www.opends.org/promoted-builds/2.2.0/install/QuickSetup.jnlp
2. Keep defaults
3.Starting the Server
https://docs.opends.org/2.2/page/StartingTheDs#section-StartingTheDs-to-start-with-startds

To Start the Server by Using start-ds

  1. Change to the appropriate directory.

    (UNIX, Linux) $ cd install-dir/bin
    (Windows) C:\> cd install-dir\bat
  2. Type start-ds.

    (UNIX, Linux) $ start-ds
    (Windows) C:\> start-ds

To Start the Server as a Foreground Process

  1. Change to the appropriate directory.

    (UNIX, Linux) $ cd install-dir/bin
    (Windows) C:\> cd install-dir\bat
  2. Type start-ds with -N or --nodetach.

    (UNIX, Linux) $ start-ds --nodetach
    (Windows) C:\> start-ds --nodetach

You can stop the directory server by pressing Control-C in the terminal window in which the server is running or by running the stop-ds utility from another window.

To Start the Server by Using the Control Panel

This procedure describes how to use the Control Panel to administer the directory server.

  1. Change to the appropriate directory.

    (UNIX, Linux) $ cd install-dir/bin
    (Windows) C:\> cd install-dir\bat
  2. Type control-panel to open the GUI control panel.

    (UNIX, Linux) $ control-panel
    (Windows) C:\> control-panel
  3. On the Server Status panel, click Start.

To Restart the Server

  1. Change to the installation directory.

    (UNIX, Linux) $ cd install-dir/bin
    (Windows) C:\> cd install-dir\bat
  2. Type stop-ds with -R or --restart.

    (UNIX, Linux) $ stop-ds --restart
    (Windows) C:\> stop-ds --restart

To Restart the Server by Using the Control Panel

This procedure describes how to use the Control Panel to administer the directory server.

  1. Change to the appropriate directory.

    (UNIX, Linux) $ cd install-dir/bin
    (Windows) C:\> cd install-dir\bat
  2. Type control-panel to open the GUI control panel.

    (UNIX, Linux) $ control-panel
    (Windows) C:\> control-panel
  3. On the Server Status panel, click Restart.
  4. In the Confirmation dialog, click Yes.

To Start the Server by Using a Script (UNIX/Linux)

The start-ds command provides a “quiet” option ( -Q or --quiet) that suppresses output during the startup process unless a significant error occurs. You can use this option in a startup script.

  1. Create a shell script and add the following start-ds command.

    install-dir/bin/start-ds --quiet
  2. Run the script.

No comments:

Post a Comment