mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Mark Craig
17.01.2013 052f70c810813d9f5533b3cd4c9138d2df0d15e6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<?xml version="1.0" encoding="UTF-8"?>
<!--
  ! CCPL HEADER START
  !
  ! This work is licensed under the Creative Commons
  ! Attribution-NonCommercial-NoDerivs 3.0 Unported License.
  ! To view a copy of this license, visit
  ! http://creativecommons.org/licenses/by-nc-nd/3.0/
  ! or send a letter to Creative Commons, 444 Castro Street,
  ! Suite 900, Mountain View, California, 94041, USA.
  !
  ! You can also obtain a copy of the license at
  ! trunk/opendj3/legal-notices/CC-BY-NC-ND.txt.
  ! See the License for the specific language governing permissions
  ! and limitations under the License.
  !
  ! If applicable, add the following below this CCPL HEADER, with the fields
  ! enclosed by brackets "[]" replaced with your own identifying information:
  !      Portions Copyright [yyyy] [name of copyright owner]
  !
  ! CCPL HEADER END
  !
  !      Copyright 2011-2013 ForgeRock AS
  !    
-->
<chapter xml:id='chap-uninstall'
 xmlns='http://docbook.org/ns/docbook' version='5.0' xml:lang='en'
 xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'
 xsi:schemaLocation='http://docbook.org/ns/docbook http://docbook.org/xml/5.0/xsd/docbook.xsd'
 xmlns:xlink='http://www.w3.org/1999/xlink'
 xmlns:xinclude='http://www.w3.org/2001/XInclude'>
 <title>Removing OpenDJ Servers</title>
 <indexterm><primary>Uninstalling</primary></indexterm>
 
 <para>Remove OpenDJ directory server software with the
 <command>uninstall</command> command.</para>
 
 <procedure xml:id="uninstall-gui">
  <title>To Uninstall OpenDJ From the Graphical Uninstaller</title>
  <step>
   <para>(UNIX) Run
   <command>OpenDJ-<?eval ${docTargetVersion}?>/uninstall</command>.</para>
   <para>(Windows) Double-click
   <filename>OpenDJ-<?eval ${docTargetVersion}?>\uninstall.bat</filename>.</para>
   <para>(Mac OS X) Double-click
   <filename>OpenDJ-<?eval ${docTargetVersion}?>/Uninstall.app</filename>.</para>
 
   <mediaobject xml:id="figure-uninstall-start">
    <imageobject>
     <imagedata fileref="images/uninstall-start.png" format="PNG" />
    </imageobject>
    <caption>
     <para>Select what to remove in the initial screen.</para>
    </caption>
   </mediaobject>
  </step>
 
  <step>
   <para>When the process is finished, you might still have some files
   to remove manually.</para>
   
   <mediaobject xml:id="figure-uninstall-finished">
    <imageobject>
     <imagedata fileref="images/uninstall-finished.png" format="PNG" />
    </imageobject>
   </mediaobject>
  </step>
 </procedure>
 
 <procedure xml:id="uninstall-cli">
  <title>To Uninstall OpenDJ On the Command Line</title>
  
  <step>
   <para>Login as the user who installed and runs the server.</para>
  </step>
  
  <step>
   <para>Run the <command>OpenDJ-<?eval ${docTargetVersion}?>/uninstall
   --cli</command> command.</para>
   
   <para>This command starts the removal program in interactive mode on the
   command line, prompting you for each option. Alternatively, use additional
   <command>uninstall</command> options to specify choices for the options.
   See <command>uninstall --help</command> for more information.</para>
   
   <screen>$ cd /path/to/opendj
$ ./uninstall --cli
Do you want to remove all components of the server or select the components to
remove?
 
    1)  Remove all components
    2)  Select the components to be removed
 
    q)  quit
 
Enter choice [1]: 
 
The server is currently running and must be stopped before uninstallation can
continue.
Stop the Server and permanently delete the files? (yes / no) [yes]: 
 
Stopping Directory Server ..... Done.
Deleting Files under the Installation Path ..... Done.
 
The Uninstall Completed Successfully.
To complete the uninstallation, you must delete manually the following files
and directories:
/path/to/opendj/lib
See /var/....log for a detailed log of this operation.</screen>
  </step>
 
  <step>
   <para>If the command output tells you to delete files manually, then remove
   those remaining files to complete the process.</para>
 
   <screen>$ rm -rf /path/to/opendj</screen>
  </step>
 </procedure>
</chapter>