ORDS Installation Step On Windows System

You might also like

Download as pdf or txt
Download as pdf or txt
You are on page 1of 4

ORDS Installation step on Windows System:-

System Requirements:-

Oracle REST Data Services system requirements are as follows:

● Oracle Database 11g Release 2 Express Edition or Later.


● Java JDK 8 or later.

Web browser requirements:

– Microsoft Internet Explorer 8.0 or later.


– Mozilla Firefox 3.0 or later.
– Google Chrome 2.0 or later

ORDS Installation:-

Step 1:

Download the ORDS zip file version should be Greater than 19.0 I
have downloaded 19.2 version size of the file is 62.5 MB.

Step 2:

Extract the ords zip file (ords-19.2.0.199.1647) in C:\ Drive and rename it as
ords.
Step 3:

Create two new folder(apex & config) inside the ords directory.

Step 4:
Copy the images folder along with files from the apex folder and paste it in
C:\ords\apex which is newly created.

Step 5:

1. In the ords folder, I located the Java war file to be used to install (and later run)
ORDS.
2. We can now run the installation. Open terminal and change the working directory to
ords.

cd C:\ords

C:\ords> java -jar ords.war install advanced

3.The first thing the process asks is where you would like to store your configuration
data.

1. Enter the location to store configuration data: C:\ords\config


2. Enter the name of the database server [localhost]:localhost
3. Enter the database listen port [1521]:1521
4. Enter 1 to specify the database service name, or 2 to specify the database SID
[1]: 1
5. Enter the database service name: xepdb1
6. Enter 1 if you want to verify/install Oracle REST Data Services schema or 2 to
skip this step [1]: 1

7. Enter the database password for ORDS_PUBLIC_USER: ramakrishna


8. Confirm Password: ramakrishna

9. Requires SYS AS SYSDBA to verify Oracle REST Data Services schema.


10. Enter the database password for SYS AS SYSDBA: Oracle123456
11. Confirm Password: Oracle123456

12. Enter the default tablespace for ORDS_METADATA [SYSAUX]:


13. Enter the temporary tablespace for ORDS_METADATA [TEMP]:
14. Enter the default tablespace for ORDS_PUBLIC_USER [USERS]:
15. Enter the temporary tablespace for ORDS_PUBLIC_USER [TEMP]:

16. Enter 1 if you want to use PL/SQL Gateway or 2 to skip this step.
If using Oracle Application Express or migrating from mod_plsql then you must
enter 1 [1]: 1
17. Enter the PL/SQL Gateway database user name [APEX_PUBLIC_USER]:
18. Enter the database password for APEX_PUBLIC_USER: ramakrishna
19. Confirm password: ramakrishna
20. Enter 1 to specify passwords for Application Express RESTful Services
database users (APEX_LISTENER, APEX_REST_PUBLIC_USER) or 2 to skip
this step [1]: 1

21. Enter the database password for APEX_LISTENER: ramakrishna


22. Confirm password: ramakrishna
23. Enter the database password for APEX_REST_PUBLIC_USER:
24. Confirm password: ramakrishna
25. Enter 1 if you wish to start in standalone mode or 2 to exit [1]: 1
26. Enter the APEX static resources location: C:\ords\apex\images
27. Enter 1 if using HTTP or 2 if using HTTPS [1]:1
28. Enter the HTTP port [8080]:8081

After installation ords should be run in background in command


prompt.

cd C:\ords

C:\ords> java -jar ords.war standalone

To check whether the ORDS is running or not instead of apex use ords in the url

eg:192.168.1.2:8081/ords

After installation If u get error then we need to change the password for
(ORDS_PUBLIC_USER & APEX_PUBLIC_USER).

Sqlplus /nolog
conn sys/oracle as sysdba;
alter session set container=xepdb1;
sql> alter user APEX_PUBLIC_USER account unlock;
sql> alter user APEX_PUBLIC_USER identified by ramakrishna;
sql> alter user ORDS_PUBLIC_USER account unlock;
sql> alter user ORDS_PUBLIC_USER identified by ramakrishna;

You might also like