Skip to content

Commit b7c733c

Browse files
committed
Updating release for 18.3.0 including OOW demos
1 parent 0df5cef commit b7c733c

6 files changed

+99
-0
lines changed

upload/9090init

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
#!/bin/bash
2+
3+
#
4+
# Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
5+
#
6+
# Licensed under the Apache License, Version 2.0 (the "License");
7+
# you may not use this file except in compliance with the License.
8+
# You may obtain a copy of the License at
9+
#
10+
# http://www.apache.org/licenses/LICENSE-2.0
11+
#
12+
# Unless required by applicable law or agreed to in writing, software
13+
# distributed under the License is distributed on an "AS IS" BASIS,
14+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+
# See the License for the specific language governing permissions and
16+
# limitations under the License.
17+
#
18+
19+
#################################################################################
20+
#
21+
# File: 9090init
22+
#
23+
# Description: Install Oracle REST Data Services on port 9090
24+
#
25+
#################################################################################
26+
27+
JETCONFIGDIR="/home/oracle/sqldeveloper/ords/hol-config"
28+
if test -d $JETCONFIGDIR
29+
then
30+
sh /home/oracle/Desktop/Database_Track/ORDS/reset_ords.sh reinstall
31+
else
32+
sh /home/oracle/Desktop/Database_Track/ORDS/reset_ords.sh install
33+
fi
34+

upload/9090start

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#!/bin/bash
2+
sh /home/oracle/Desktop/Database_Track/ORDS/reset_ords.sh start

upload/9090stop

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#!/bin/bash
2+
sh /home/oracle/Desktop/Database_Track/ORDS/reset_ords.sh stop
+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/bash
2+
. /home/oracle/.bashrc
3+
newpdbords
4+
9090init
5+
#on ords 9090 reset we want reinstall not uninstall
6+
touch ~/.ordsreinstall
7+
#note 9090init has a 3 minute wait to ensure ords has started

upload/runtime9090ORDS.properties

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
#
2+
# Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
3+
#
4+
# Licensed under the Apache License, Version 2.0 (the "License");
5+
# you may not use this file except in compliance with the License.
6+
# You may obtain a copy of the License at
7+
#
8+
# http://www.apache.org/licenses/LICENSE-2.0
9+
#
10+
# Unless required by applicable law or agreed to in writing, software
11+
# distributed under the License is distributed on an "AS IS" BASIS,
12+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
# See the License for the specific language governing permissions and
14+
# limitations under the License.
15+
#
16+
# File name: runtime9090ORDS.properties renamed to
17+
# /u01/userhome/oracle/sqldeveloper/ords/warmstart/ords_params_vmconfig.properties by init script
18+
db.hostname=localhost
19+
db.port=1521
20+
db.servicename=ords
21+
migrate.apex.rest=false
22+
ords.admin.password=@0595EF68A01A67A71E419780298842432F
23+
ords.admin.username=ords_admin
24+
ords.sqldev.password=@05B40F336C99F8FDB603EF06C3EF1C4E85
25+
ords.sqldev.username=ords_dev
26+
plsql.gateway.add=false
27+
rest.services.apex.add=false
28+
rest.services.ords.add=true
29+
schema.tablespace.default=SYSAUX
30+
schema.tablespace.temp=TEMP
31+
security.verifySSL=false
32+
standalone.http.port=9090
33+
standalone.mode=true
34+
standalone.use.https=false
35+
standalone.skip.static.resources value=true
36+
user.public.password=oracle
37+
user.tablespace.default=USERS
38+
user.tablespace.temp=TEMP
39+
config.status=REQUIRES_CONFIG
40+
@05A5E9B2C0CA9664E0FE0516F7ED473A2B5EF4EA6E4C4B0C21=@058985F627D4AE7309DD81F379A683FC62
41+
@05F752B18312E9F5AC0964F573203DE0E531F60EE9BA261C52=@056E34BA50503B2D4A739AE1BC6BF10F81
42+
file.creator=sqldev
43+
installer=install
44+
45+
46+

upload/uninstall9090ORDS.properties

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
@05A5E9B2C0CA9664E0FE0516F7ED473A2B5EF4EA6E4C4B0C21=@058985F627D4AE7309DD81F379A683FC62
2+
@05F752B18312E9F5AC0964F573203DE0E531F60EE9BA261C52=@056E34BA50503B2D4A739AE1BC6BF10F81
3+
db.hostname=localhost
4+
db.port=1521
5+
db.servicename=ords
6+
file.creator=sqldev
7+
installer=uninstall
8+

0 commit comments

Comments
 (0)