- 浏览: 681165 次
- 性别:
- 来自: 中山
文章分类
最新评论
-
wuhuizhong:
jFinal支持Rest风格吗?可以想spring mvc那样 ...
在JFinal的Controller中接收json数据 -
wuhuizhong:
在jfinal中应如何获取前端ajax提交的Json数据?ht ...
在JFinal的Controller中接收json数据 -
wuhuizhong:
jfinal如何处理json请求的数据:问题: 在某些api接 ...
在JFinal的Controller中接收json数据 -
wuhuizhong:
Ubuntu14.04 安装 Oracle 11g R2 Ex ...
Oracle 11g release 2 XE on Ubuntu 14.04 -
alanljj:
这个很实用,已成功更新,谢过了!
odoo薪酬管理模块l10n_cn_hr_payroll
Apex 3.1 works with all versions above 9203, (including Oracle 11g). In this article the steps are defined for Installing apex_3.1 on 10gR2 (10.2.0.1)
Step 1:
Download 10gR2 software
(http://www.oracle.com/technology/software/products/database/index.html)
Step 2:
Download 10gR2 Companion CD (for HTTP Server)
(http://www.oracle.com/technology/software/products/database/index.html)
Step 3:
Download apex_3.1 from http://apex.oracle.com
or
http://www.oracle.com/technology/products/database/application_express/download.html
Step 4:
Install 10gR2 software and create a general
database as part of installation
Step 5:
Install 10gR2 companion CD – you will have two
options (HTMLDB + HTTP Server or only HTTP Server) (I selected HTMLDB +
HTTP Server, not a must though, since we will be installing apex_3.1)
Step 6:
Stop both oracle DB and Apache server just
installed.
Step 7:
Start the DB and let apache be down.
Step 8:
Unzip apex_3.1.zip (hereinafter referred as
APEX_LOC)
Step 9:
Pre-install requirements for APEX.
1. DB Requirement
– Should be greater than 9203.
2. JVM Requirement
– Need to be installed separetly if
DB is less than 10gR1
3. Shared Pool Size
of the database – ignore if
sga_target is used, else it has to be atleast 100M;
4. HTTP Server
(with mod_plsql) Requirements –
Oracle9iR2 (9.2) or later / Oracle9iAS release 1 (1.0.2.2) or later /
Oracle Database 10g Companion CD release 1 or 2 / Oracle Database 11g
release 1
5. Space Requirement
-
For APEX Software Files – 450MB
For APEX objects (tablespace) – 125MB
SYSTEM Tablesapce – 85MB
6. Oracle XML DB Requirement
– XML DB should be
installed in the database
7. Oracle Text Requirement
– for Searchable online help
in APEX
8. PL/SQL Web to
olkit – required Version 10.1.2.0.6
(10gR2 brings in 10.1.2.0)
In our approach, (10gR2 DB + 10gR2 Companion CD 1) we had satisfied 1,2,3,4 & 6 requirements. Perform below steps to satisfy 5, 7 & 8.
For 5:
We can create a separate tablespace for APEX
objects or we can use SYSAUX tables. Add appropriate datafiles to the
tablespaces to meet the required free space.
For 7:
Connect to db as ctxsys user and execute
@ORACLE_HOME\ctx\admin\defaults\drdefus.sql (substitute ORACLE_HOME with
actual path)
For 8:
Go to the location where you had extracted
apex_3.1 zip (APEX_LOC). Connect to db as sys user and execute
owainst.sql (under apex\owa directory)
Execute “select owa_util.get_version from dual;” to verify the pl/sql
web toolkit version.
Step 10:
Install APEX 3.1
- Goto the location where you had extracted apex_3.1 zip. change
location to apex directory under APEX_LOC.
- Connect to database as sys user and execute below command
- @apexins TS1 TS2 TEMP_TS /i/
TS1 => SYSAUX or (tablespace created for APEX)
TS2 => SYSAUX or (tablespace created for APEX)
TEMP_TS => Temporary tablesapce
/i/ => Location to store APEX Images (no need to mention any path,
just leave it as /i/)
eg:(@apexins APEX_DATA APEX_DATA TEMP /i/)
Installation logfile will be located under APEX_LOC as installYYYY-MM-DD_HH24-MI-SS.log.
Step 11:
Change Password for ADMIN Account
- Change directory to apex
- Connect to DB as sys user and execute
- @apxchpwd
(ADMIN user is the super user account simillar to SYS for DB)
Step 12: Configure HTTP Server
Step 12.1
: Unlock APEX_PUBLIC_USER Account & change
password
- Connect to db as sys user
- alter user apex_public_user account unlock;
- alter user apex_public_user identified by NEW_PASSWORD;
Step 12.2:
Copy APEX Images
- Open APACHE_ORACLE_HOME/Apache/modplsql/conf/marvel.con to identify
default location set for images (/i/) (Hereinafter referred as
IMAGE_LOC)
- Goto the location identified above
(eg.C:/oracle/product/as/1020/htmldb/images/)
- Rename the images directory to images_old
- Copy APEX_LOC/apex/images to C:/oracle/product/as/1020/htmldb/
Step 12.3:
Adding DAD entry to connect to APEX
- Open APACHE_ORACLE_HOME/Apache/modplsql/dad.conf
- Past below entry
Alias /i/ “[ Put the IMAGE_LOC Value] “
AddType text/xml xbl
AddType text/x-component htc
<Location /pls/apex>
Order deny,allow
PlsqlDocumentPath docs
AllowOverride None
PlsqlDocumentProcedure wwv_flow_file_mgr.process_download
PlsqlDatabaseConnectString hostname:port:SID
PlsqlNLSLanguage AMERICAN_AMERICA.AL32UTF8
PlsqlAuthenticationMode Basic
SetHandler pls_handler
PlsqlDocumentTablename wwv_flow_file_objects$
PlsqlDatabaseUsername APEX_PUBLIC_USER
PlsqlDefaultPage apex
PlsqlDatabasePassword APEX_PASSWORD
PlsqlRequestValidationFunction wwv_flow_epg_include_modules.authorize
Allow from all
</Location>
Make sure these values are properly set before saving this file (marvel.conf)
1. IMAGE_LOC Value
2. hostname:port:SID => eg: localhost:1521:ORCL
3. APEX_PASSWORD => eg: password_you_had_selected_on_step_12.1
IF all the above values are set, save the file as marvel.conf
Step 13: Start HTTP Server (Start -> Programs -> Oracle)
Step 14: Access the admin page of APEX
http://hostname:port/pls/apex/apex_admin
Username: ADMIN
Password: PASSWORD_SELECTED_WHILE_RUNNING_apxchpwd
http://codemouse.wordpress.com/2009/12/25/installing-oracle-10g-on-ubuntu-8/
发表评论
-
用函数unistr将Oracle数据库中的Unicode转换为中文
2016-07-19 11:51 7918例子: DECLARE V_EXT_DES V ... -
ORACLE APPLICATION EXPRESS 5.0 升级
2016-05-12 11:43 580Oracle11GR2 XE 缺省是安装了oracle ap ... -
Oracle ACL(Access Control List)
2016-05-12 11:36 889在oralce 11g中假如你想获取server的ip或者h ... -
了解systemstate dump
2016-04-26 14:09 487当数据库出现严重的性能问题或者hang了的时候,我们非常需要 ... -
通过ORACLE的UTL_HTTP工具包发送包含POST参数的请求
2016-03-18 16:25 5152DECLARE req utl_http. ... -
Shell: extract more from listener.log(分析监听日志)
2016-03-16 14:57 1148统计一天内每小时的session请求数 # fgrep ... -
ORA-01031: insufficient privileges 问题解决笔记
2016-02-01 15:53 1186A) File $Oracle_HOME/network/a ... -
listener.log中报Warning: Subscription For Node Down Event Still Pending问题的解决方法
2016-01-07 16:34 1634一套Oracle 10.2.0.1 for aix的数据库环 ... -
Oracle触发器和MySQL触发器之间的区别
2015-11-19 12:55 670Oracle触发器格式: CREATE [OR RE ... -
查询正在执行的存储过程
2015-11-13 09:27 20501、找正在执行的PROCEDURE的 sid ,serial# ... -
undo表空间损坏的处理过程
2015-10-14 13:49 1219磁碟陣列故障,分區/rman上包括undo和archivel ... -
登录oracle资料库时很久无反应的问题处理一例
2015-10-11 10:56 993原因是系统存在僵死的进程,促使session处于激活状态.首 ... -
TNS-12560问题解决
2015-10-01 19:52 613tnsping远程主机实例出现TNS-12560: TNS ... -
查看undo中sql语句的占用情况
2015-08-06 17:18 1764查看undo中sql语句的占用情况 select * ... -
Install Open System Architect And ODBC Instant Client
2015-05-21 14:03 749How to Install Open System Arc ... -
恢复oracle中用pl sql误删除drop掉的表
2015-04-03 16:12 553查看回收站中表 select object_name,or ... -
在Oracle Linux 6.6上安装Oracle 10gR2
2015-01-15 15:36 2681查看硬體配置 # df -h Filesystem ... -
kill
2015-01-03 11:36 457--根据某一对象查询进程 col owner fo ... -
Oracle 数据库Storage存储迁移笔记
2014-12-27 11:08 9861.确认数据文件、控制文件、临时文件、日志文件 位置 / ... -
異地備份資料庫的開啟步驟
2014-11-19 14:03 487使用EMC設備執行異地備份, 資料庫的複製是開啟的狀態下, ...
相关推荐
Installing and configuring servers Chapter 2. Configuring server roles and features Chapter 3. Configuring Hyper-V Chapter 4. Deploying and configuring core network services Chapter 5. Installing and...
根据提供的文件信息,本书《Installing and Configuring Windows Server 2012 Exam Ref 70-410》是一本针对Microsoft认证考试70-410的专业辅导教材。本书由Craig Zacker编写,并由Microsoft Press出版。以下是本书中...
根据给定的文件信息,我们可以提炼以下知识点: 1. **Windows Server 2012 R2安装与配置**: - MCSA(Microsoft Certified Solutions Associate)认证考试涉及到Windows Server 2012 R2的安装与配置,其中考试编号...
根据提供的文件信息,我们可以得出《Exam 70-410 Installing and Configuring Windows Server 2012 Lab Manual》是一本针对微软认证考试70-410的专业实验手册,该手册主要围绕Windows Server 2012的安装与配置进行...
Installing and Configuring Openfiler with DRBD and Heartbeat
Exam Ref 70-410 Installing and Configuring Windows Server 2012
Exam Ref 70-698 Installing and Configuring Windows 10 英文epub 本资源转载自网络,如有侵权,请联系上传者或csdn删除 本资源转载自网络,如有侵权,请联系上传者或csdn删除
- **Training Guide Installing and Configuring Windows Server 2012**:此标题明确指出这是一本关于安装与配置Windows Server 2012的培训指南。 - **70-410 Training Guide Installing and Configuring Windows ...
1. Open edX平台简介:文档中提到的“Installing, Configuring, and Running the Open edX Platform”是一个运行手册,该手册对如何安装、配置和运行Open edX平台提供了详尽的指导。Open edX平台支持各种在线教育...
在安装和配置SharePoint 2013时,首先需要准备环境。这通常涉及搭建一个包含专门角色的服务器架构,例如独立的域控制器、独立的SQL Server和专门用于SharePoint的服务器。... 在开始安装SharePoint前,需要运行先决...
《Syngress - 如何巧妙地安装、配置Windows 2000文件系统》 本书是Syngress出版的一本电子书,旨在为那些在Windows 2000文件系统管理中遇到挑战的人提供快速、逐步的解决方案。以下将详细讨论书中涉及的主要知识点...
在本文档中,我们将深入探讨如何在Oracle Solaris 11.2操作系统环境下安装和配置OpenStack。Oracle Solaris 11.2是Oracle公司推出的一款先进的Unix操作系统,以其稳定性和安全性著称,而OpenStack则是一个开源的...
根据给定文件内容,本文将详细阐述关于“70-410 安装和配置Windows Server 2012”相关知识点。Windows Server 2012是微软公司推出的一款服务器操作系统,为部署和管理复杂网络环境提供了强大的功能。...
Installing /usr/local/lib/perl5/site_perl/5.10.0/Alien/Package/Deb.pm Installing /usr/local/lib/perl5/site_perl/5.10.0/Alien/Package/Lsb.pm Installing /usr/local/lib/perl5/site_perl/5.10.0/Alien/...
- **Installing the Alfresco Tomcat bundle on Linux**:对于 Linux 平台,同样提供了仅安装 Alfresco 和 Tomcat 的捆绑包的方法。 - **Installing Alfresco on Mac (full installation)**:Mac 用户的完整安装指南...
Product Description Wireless connectivity is now a reality in most businesses. Yet by its nature, wireless networks are the most difficult to secure and are often the favorite target of intruders....
Microsoft Windows Server 2012 70-410 Series Introduction