Saturday, June 19, 2010
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
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
- Change to the appropriate directory.
(UNIX, Linux) $ cd install-dir/bin
(Windows) C:\> cd install-dir\bat - Type start-ds.
(UNIX, Linux) $ start-ds
(Windows) C:\> start-ds
To Start the Server as a Foreground Process
- Change to the appropriate directory.
(UNIX, Linux) $ cd install-dir/bin
(Windows) C:\> cd install-dir\bat
- 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.
- Change to the appropriate directory.
(UNIX, Linux) $ cd install-dir/bin
(Windows) C:\> cd install-dir\bat
- Type control-panel to open the GUI control panel.
(UNIX, Linux) $ control-panel
(Windows) C:\> control-panel
- On the Server Status panel, click Start.
To Restart the Server
- Change to the installation directory.
(UNIX, Linux) $ cd install-dir/bin
(Windows) C:\> cd install-dir\bat
- 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.
- Change to the appropriate directory.
(UNIX, Linux) $ cd install-dir/bin
(Windows) C:\> cd install-dir\bat
- Type control-panel to open the GUI control panel.
(UNIX, Linux) $ control-panel
(Windows) C:\> control-panel
- On the Server Status panel, click Restart.
- 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.
- Create a shell script and add the following start-ds command.
install-dir/bin/start-ds --quiet
- Run the script.
activemq on ubuntu
1. Follow these instructions @ http://activemq.apache.org/getting-started.html#GettingStarted-InstallationProcedureforUnix
2. Change the url to http://www.takeyellow.com/apachemirror/activemq/apache-activemq/5.3.2/apache-activemq-5.3.2-bin.tar.gz
3. Use
2. Change the url to http://www.takeyellow.com/apachemirror/activemq/apache-activemq/5.3.2/apache-activemq-5.3.2-bin.tar.gz
3. Use
nohup bin/activemq > /tmp/smlog 2>&1 &
4. Testing installation
netstat -an|grep 61616
5. Admin URL
http://localhost:8161/admin/
6. Kill
ps -ef|grep activemq
kill [PID]
7.
kill [PID]
Subscribe to:
Comments (Atom)