Oracle Apex 5.0安装教程

1- The installation requires

Before installing   Oracle Application Express (Oracle APEX) you need to:
  1. Install Oracle Database (10g, 11g or 12c)
Oracle Apex 5.0安装教程_第1张图片


2- Download Oracle APEX

  • http://www.oracle.com/technetwork/developer-tools/apex/downloads/index.html
Oracle Apex 5.0安装教程_第2张图片
To download, you need to log in with an account of   Oracle, if not, you can register a free account.
Oracle Apex 5.0安装教程_第3张图片

3- Installing Oracle APEX

Decompress  zip file you have downloaded in some position of hard disk drive. Here I decompress it at   C:/DevPrograms.
Note: Your folder must be named   apex. This is compulsory.
Oracle Apex 5.0安装教程_第4张图片
Oracle Apex 5.0安装教程_第5张图片
Open  CMD and  CD to  apex directory:
Oracle Apex 5.0安装教程_第6张图片
Next, enter sqlplus statement in order to log in  sqlplus (Note: Don't open  sqlplus directly. It should be through  CMD after  CD to  apexdirectory).
Oracle Apex 5.0安装教程_第7张图片
Sign in to user  sys, as  sysdba.
Oracle Apex 5.0安装教程_第8张图片
Login successful:
Oracle Apex 5.0安装教程_第9张图片
Run script  apexins.sql
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--
-- Run script apexins.sql with parameters:
--
-- @apexins.sql tablespace_apex tablespace_files tablespace_temp images
--
-- Where:
-- tablespace_apex is the name of the tablespace for the Oracle Application Express application user.
-- tablespace_files is the name of the tablespace for the Oracle Application Express files user.
-- tablespace_temp is the name of the temporary tablespace or tablespace group.
-- images is the virtual directory for Oracle Application Express images.
-- (To support future Oracle Application Express upgrades, define the virtual image directory as /i/.)
--
 
@apexins.sql sysaux sysaux temp /i/
Oracle Apex 5.0安装教程_第10张图片
Wait for about 30 minutes until the above statement is completed.
Oracle Apex 5.0安装教程_第11张图片
The above script create some   SCHEMA on Database, you can test by querying view  ALL_USERS on   SQLPlus:
Oracle Apex 5.0安装教程_第12张图片

4- Configuring APEX

You need log in   SQLPlus again from   CMD and sign in   sys user as  sysdba.
Oracle Apex 5.0安装教程_第13张图片

apex_egp_config.sql

This script will load the  Application Express images into  XDB and then configure a  DAD for use by  Application Express in the  Embedded PL/SQL Gateway.
?
1
2
3
4
5
6
--
-- Running script apex_epg_config.sql with parameter:
-- @apex_epg_config.sql
--
 
@apex_epg_config.sql C:\DevPrograms
Oracle Apex 5.0安装教程_第14张图片
Oracle Apex 5.0安装教程_第15张图片

Unlock user anonymous:

?
1
2
3
-- Unlock user anonymous:
 
alter user anonymous account unlock;
Oracle Apex 5.0安装教程_第16张图片

apexconf.sql

Run script  apexconf.sql 

Used to perform the final configuration steps for  Oracle Application Express, including setting the  XDB HTTP listener port and  Application Express ADMIN password.
?
1
2
3
4
5
6
7
--
-- Running script: @apxconf.sql
-- Setup password for ADMIN
-- Configuring XDB Http Listener port
--
 
@apxconf.sql
Oracle Apex 5.0安装教程_第17张图片
To  user, you can use  ADMIN by default, and email can be skipped.
To password, the system requires you to enter a strong password:
Password does not conform to this site's password complexity rules.
  1. Password must contain at least 6 characters.
  2. Password must contain at least one alphabetic character (abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ).
  3. Password must contain at least one punctuation character (!"#$%&()``*+,-/:;?_).
  4. Password must contain at least one upper-case alphabetic character.
  5. Password must contain at least one lower-case alphabetic character.
Oracle Apex 5.0安装教程_第18张图片
Port default is  8080:
Oracle Apex 5.0安装教程_第19张图片
The configuration has been completed.

5- Running Oracle APEX admin

  • http://localhost:8080/apex/apex_admin
Oracle Apex 5.0安装教程_第20张图片
Oracle Apex 5.0安装教程_第21张图片
You have successfully logged into the system of management of  Oracle APEX:
Oracle Apex 5.0安装教程_第22张图片

6- Getting Started with Oracle APEX programming

Next you can be ready with Oracle APEX programming, you can read document:
  • Oracle APEX Tutorial for Beginners (APEX 5.0)
Oracle Apex 5.0安装教程_第23张图片

你可能感兴趣的:(Oracle,APEX,Tutorial教程)