-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOTDS
172 lines (83 loc) · 3.7 KB
/
OTDS
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
OTDS On-Prem Install Guide
Contents
[**OTDS Installation Guide**. 1](file:///C:/Users/mprabhakar/Downloads/OTDS%20Installation%20Guide.docx#_Toc168482313)
[**Prerequisites**. 1](file:///C:/Users/mprabhakar/Downloads/OTDS%20Installation%20Guide.docx#_Toc168482314)
[**Step-by-Step Installation**. 1](file:///C:/Users/mprabhakar/Downloads/OTDS%20Installation%20Guide.docx#_Toc168482315)
[**1\. Install Required Software**. 1](file:///C:/Users/mprabhakar/Downloads/OTDS%20Installation%20Guide.docx#_Toc168482316)
[**2\. Configure Apache Tomcat** 2](file:///C:/Users/mprabhakar/Downloads/OTDS%20Installation%20Guide.docx#_Toc168482317)
[**3\. Install OTDS**. 3](file:///C:/Users/mprabhakar/Downloads/OTDS%20Installation%20Guide.docx#_Toc168482318)
[**4\. Verify Installation**. 3](file:///C:/Users/mprabhakar/Downloads/OTDS%20Installation%20Guide.docx#_Toc168482319)
[**References**. 4](file:///C:/Users/mprabhakar/Downloads/OTDS%20Installation%20Guide.docx#_Toc168482320)
**Prerequisites**
* Operating System: SLES 15 SP5
* Required Packages:
* PostgreSQL 14
* PostgreSQL Contrib
* Java 17 or 21
* Apache Tomcat 10.1
**Step-by-Step Installation**
**1\. Install Required Software**
**1.1 Install SLES 15 SP5 with PostgreSQL Contrib**
Ensure you have SLES 15 SP5 installed and running. Install the PostgreSQL Contrib package:
bash
sudo zypper install postgresql-contrib
**1.2 Install Java 17 or 21**
Download and install Java 17 or 21:
bash
sudo zypper install java-17-openjdk
\# or
sudo zypper install java-21-openjdk
**1.3 Install PostgreSQL 14**
Install PostgreSQL 14:
bash
sudo zypper addrepo https://download.opensuse.org/repositories/server:database/postgresql/SLE\_15\_SP5/server:database:postgresql.repo
sudo zypper refresh
sudo zypper install postgresql14
**1.4 Install Apache Tomcat 10.1**
Download and install Apache Tomcat 10.1:
bash
wget https://dlcdn.apache.org/tomcat/tomcat-10/v10.1.24/bin/apache-tomcat-10.1.24.tar.gz
tar xzf apache-tomcat-10.1.24.tar.gz
sudo mv apache-tomcat-10.1.24 /opt/tomcat
**2\. Configure Apache Tomcat**
**2.1 Set Heap Size**
Edit the catalina.sh file to configure the heap size:
bash
sudo nano /opt/tomcat/bin/catalina.sh
Add the following line:
bash
JAVA\_OPTS="-Xmx1024m $JAVA\_OPTS"
**2.2 Configure HTTPS Keystore**
Create a certificate for HTTPS:
bash
export IG\_JKS\_ALIAS=tom
export IG\_JKS\_FQDN=igqe-131.cloud-igas-qe.com
export IG\_JKS\_FILE=secure.jks
export IG\_JKS\_PWD=changeit
keytool -genkeypair -keyalg RSA -keysize 2048 -validity 730 -alias "$IG\_JKS\_ALIAS" -dname "cn=$IG\_JKS\_FQDN" -keystore "$IG\_JKS\_FILE" -keypass "$IG\_JKS\_PWD" -storepass "$IG\_JKS\_PWD" -storetype PKCS12
Update the server.xml file with the following connector configuration:
xml
**3\. Install OTDS**
Download and install OTDS using the provided installer URLs:
**For Linux:**
bash
wget https://artifactory.opentext.net/artifactory/OT/latest/comp/otds.installation/16\_rel-branch/MSWin32\_64/media.zip!/OTDS-2420-LNX.tar
tar xvf OTDS-2420-LNX.tar
cd OTDS-2420-LNX
./install.sh
**For Windows:**
Download and run the installer from the following URL:
plaintext
https://artifactory.opentext.net/artifactory/OT/latest/comp/otds.installation/16\_rel-branch/MSWin32\_64/media.zip!/OTDS-2420-WIN/en-US/OTDS-2420-WIN.msi
**4\. Verify Installation**
**4.1 Check Logs**
Ensure OTDS logs are generated correctly:
bash
cat /opt/tomcat/logs/otds.logs
**4.2 Launch OTDS**
Access OTDS using the following URL:
plaintext
https://:8443/otds-admin
**References**
* [Apache Tomcat® - Apache Tomcat 10 Software Downloads](https://tomcat.apache.org/download-10.cgi)
* [Apache Tomcat 10.1.24 README](https://dlcdn.apache.org/tomcat/tomcat-10/v10.1.24/README.html)