Oracle 低代码平台 Apex 最新版本 23.2 安装过程

news2024/11/24 16:02:03

趁春节快结束前,安装了一把APEX ,到目前为此,APEX最新版本为23.2,23.2和21版本有一些变化,只是用于验证,我
是使用的单独模式,没有安装TOMAT,下面列一下安装过程:

1.环境
    ORACLE LINUX 9.3
    GI 19.22
    ORACLE 19.22
    CDB
    APEX 23.2

2.使用PDB用于 APEX
   当然,NON-CDB 也是可以的
  sql> alter system set db_create_file_dest='+data';
   sql> create pluggable database pdbapex admin user pdbapex identified by oracle_4U;
   sql>alter pluggable database pdbapex open;
   sql>alter pluggable database pdbapex save state;

3.为APEX和ORDS创建单独的表空间
   sql>alter session set container=pdbapex;
   sql>create tablespace tsp_apex datafile size 1g autoextend on;
   sql>create tablespace tsp_ords datafile size 100m autoextend on;

4.指定APEX安装目录
   APEX包含APEX和ORDS安装
    APEX安装于 /u01/app/apex
    ords 安装于 /u01/app/ords

    # mkdir -p /u01/app/{apex,ords}
    # chown -R oracle:dba /u01/app/{apex,ords}
    # chmod -R 775 /u01/app/{apex,ords}

5.下载apex和ords的安装文件
    https://download.oracle.com/otn_software/apex/apex_23.2.zip  --选择多语言版本
    https://download.oracle.com/otn_ ... 23.4.0.346.1619.zip

6.解压APEX
    [oracle@dbserver app]$ pwd
    /u01/app

    [oracle@dbserver app]$ unzip apex/apex_23.2.zip .

    [oracle@dbserver apex]$ ls
apex_23.2.zip    apexins_nocdb.sql           appins.sql          apxdvins_cdb.sql    apxpatch.sql        apxrtins1.sql       apxsilentins.sql  coreins5.sql  install2024-02-16_15-42-38.log
apexins1.sql     apexins.sql                 apxappcon.sql       apxdvins_nocdb.sql  apxremov1.sql       apxrtins2.sql       builder           coreins.sql   LICENSE.txt
apexins2.sql     apex_rest_config_cdb.sql    apxchpwd.sql        apxdvins.sql        apxremov2.sql       apxrtins3.sql       core              dbcsconf.sql  load_trans.sql
apexins3.sql     apex_rest_config_core.sql   apxdevrm_cdb.sql    apxdwngrd.sql       apxremov_cdb.sql    apxrtins_cdb.sql    coreins2.sql      dbcsins.sql   ords
apexins_adb.sql  apex_rest_config_nocdb.sql  apxdevrm_nocdb.sql  apxpatch_cdb.sql    apxremov_nocdb.sql  apxrtins_nocdb.sql  coreins3.sql      devins.sql    utilities
apexins_cdb.sql  apex_rest_config.sql        apxdevrm.sql        apxpatch_nocdb.sql  apxremov.sql        apxrtins.sql        coreins4.sql      images

     [oracle@dbserver ords]$ cd ords
     [oracle@dbserver ords]$ pwd
     /u01/app/ords
     [oracle@dbserver ords]$
     [oracle@dbserver ords]$ ls -l ords-23.4.0.346.1619.zip
     -rw-r--r-- 1 root root 114754880 Feb 16 11:55 ords-23.4.0.346.1619.zip
     [oracle@dbserver ords]$ unzip ords-23.4.0.346.1619.zip

     [oracle@dbserver ords]$ ls -ltr
     total 222144
     drwxr-xr-x  4 oracle oinstall        38 Mar 27  2023 scripts
     drwxr-xr-x  7 oracle oinstall        93 Mar 27  2023 examples
     drwxr-xr-x  3 oracle oinstall        17 Nov 24 17:50 lib
     drwxr-xr-x  2 oracle oinstall        28 Nov 24 17:50 icons
     -rw-r--r--  1 oracle oinstall       365 Dec 12 05:35 THIRD-PARTY-LICENSES.txt
     -rw-r--r--  1 oracle oinstall       210 Dec 12 05:35 NOTICE.txt
     -rw-r--r--  1 oracle oinstall      5996 Dec 12 05:35 LICENSE.txt
     -rw-r--r--  1 oracle oinstall 112653905 Dec 12 16:36 ords.war
     drwxr-xr-x  3 oracle oinstall        86 Dec 12 16:36 linux-support
     drwxr-xr-x  3 oracle oinstall        21 Dec 12 16:36 docs
     drwxr-xr-x  2 oracle oinstall        34 Dec 12 16:36 bin
     -rw-r--r--  1 root   root     114754880 Feb 16 11:55 ords-23.4.0.346.1619.zip
     drwxr-xr-x 29 oracle oinstall     28672 Feb 16 14:27 images
     drwxr-xr-x  2 oracle oinstall       102 Feb 16 16:03 logs
     [oracle@dbserver ords]$


7.安装APEX
    cd /u01/app/apex
    sqlplus / as sysdba
    sql>alter session set container=pdbapex;
    sql>@apexins.sql tsp_apex tsp_apex temp /i/

8.修改apex管理员密码
    密码设置为oracle_4U
  SQL> @apxchpwd.sql
...set_appun.sql
================================================================================
This script can be used to change the password of an Oracle APEX
instance administrator. If the user does not yet exist, a user record will be
created.
================================================================================
Enter the administrator's username [ADMIN]
User "ADMIN" does not yet exist and will be created.
Enter ADMIN's email [ADMIN] zq@cqsztech.com
Enter ADMIN's password []     -- oracle_4U
Created instance administrator ADMIN.

9.解锁APEX_PUBLIC_USER账号及密码
  alter user APEX_REST_PUBLIC_USER identified by oracle_4U account unlock;

10.启用rest

SQL> @apex_rest_config.sql

Enter a password for the APEX_LISTENER user              []   --密码统一为oracle_4U
Enter a password for the APEX_REST_PUBLIC_USER user              [] --密码统一为oracle_4U
...set_appun.sql
...setting session environment
...create APEX_LISTENER and APEX_REST_PUBLIC_USER users
...grants for APEX_LISTENER and ORDS_METADATA user
SYS>

以上执行完,在dba_users中,多了以上两个用户

11.安装中文语音包 (apex_230200)
cd /u01/app/apex/builder/zh-cn
sqlplus / as sysdba
sql>alter session set container=pdbapex;
sql>@load_zh-cn.sql

12.配置网络策略
sql>alter session set container=pdbapex;

BEGIN
    DBMS_NETWORK_ACL_ADMIN.APPEND_HOST_ACE(
        host => '*',
        ace => xs$ace_type(privilege_list => xs$name_list('connect'),
                           principal_name => 'APEX_230200',
                           principal_type => xs_acl.ptype_db));
END;

13.设置环境变量

# mkdir -p /work/dbtools-dev/config

# chown -R oracle:dba /work/dbtools-dev/config
# chmod -R 775 /work/dbtools-dev/config

# mkdir -p /etc/ords/config

# chown -R oracle:dba /etc/ords/config
# chmod -R 775 /etc/ords/config

su - oracle
echo -e 'export PATH="$PATH:/u01/app/ords/bin"' >> ~/.bash_profile
source ~/.bash_profile

export ORDS_CONFIG=/etc/ords/config
export  JDK_JAVA_OPTIONS=-Dconfig.url=/work/dbtools-dev/config/

14.安装 ords
  [oracle@dbserver ords]$ ords install

   NOTE: Picked up JDK_JAVA_OPTIONS: -Dconfig.url=/work/dbtools-dev/config/

ORDS: Release 23.4 Production on Fri Feb 16 05:34:13 2024

Copyright (c) 2010, 2024, Oracle.

Configuration:
  /etc/ords/config/

The configuration folder /etc/ords/config does not contain any configuration files.

Oracle REST Data Services - Interactive Install

  Enter a number to select the type of installation
    [1] Install or upgrade ORDS in the database only
    [2] Create or update a database pool and install/upgrade ORDS in the database
    [3] Create or update a database pool only
  Choose [2]:  --直接回车选择2
  Enter a number to select the database connection type to use
    [1] Basic (host name, port, service name)
    [2] TNS (TNS alias, TNS directory)
    [3] Custom database URL
  Choose [1]:  --直接回车,选择1
  Enter the database host name [localhost]:
  Enter the database listen port [1521]:
  Enter the database service name [orclcdb]: pdbapex   --按实际输入
  Provide database user name with administrator privileges.
    Enter the administrator username: sys          --sys用户
  Enter the database password for SYS AS SYSDBA:       --sys的密码
Connecting to database user: SYS AS SYSDBA url: jdbc:oracle:thin:@//localhost:1521/pdbapex

Retrieving information.
  Enter the default tablespace for ORDS_METADATA and ORDS_PUBLIC_USER [SYSAUX]: tsp_ords
  Enter the temporary tablespace for ORDS_METADATA and ORDS_PUBLIC_USER [TEMP]: temp
  Enter a number to select additional feature(s) to enable:
    [1] Database Actions  (Enables all features)
    [2] REST Enabled SQL and Database API
    [3] REST Enabled SQL
    [4] Database API
    [5] None
  Choose [1]:    --直接回车,启用所有功能
  Enter a number to configure and start ORDS in standalone mode
    [1] Configure and start ORDS in standalone mode
    [2] Skip
  Choose [1]:   --我这里是直接选择的独立模式,1
  Enter a number to select the protocol
    [1] HTTP
    [2] HTTPS
  Choose [1]:
  Enter the HTTP port [8080]:  --直接回车
  Enter the APEX static resources location: /u01/app/apex/images   --这个注意选择实际图片的位置,如果选择错误,后面进入APEX会报错
The setting named: db.connectionType was set to: basic in configuration: default
The setting named: db.hostname was set to: localhost in configuration: default
The setting named: db.port was set to: 1521 in configuration: default
The setting named: db.servicename was set to: pdbapex in configuration: default
The setting named: plsql.gateway.mode was set to: proxied in configuration: default
The setting named: db.username was set to: ORDS_PUBLIC_USER in configuration: default
The setting named: db.password was set to: ****** in configuration: default
The setting named: feature.sdw was set to: true in configuration: default
The global setting named: database.api.enabled was set to: true
The setting named: restEnabledSql.active was set to: true in configuration: default
The setting named: security.requestValidationFunction was set to: ords_util.authorize_plsql_gateway in configuration: default
The global setting named: standalone.http.port was set to: 8080
The global setting named: standalone.static.path was set to: /u01/app/apex/ords/images/
The global setting named: standalone.static.context.path was set to: /i
The global setting named: standalone.context.path was set to: /ords
The global setting named: standalone.doc.root was set to: /etc/ords/config/global/doc_root
2024-02-16T05:38:27.316Z INFO        Created folder /u01/app/ords/logs
2024-02-16T05:38:27.317Z INFO        The log file is defaulted to the current working directory located at /u01/app/ords/logs
2024-02-16T05:38:27.401Z INFO        Installing Oracle REST Data Services version 23.4.0.r3461619 in PDBAPEX
2024-02-16T05:38:29.366Z INFO        ... Verified database prerequisites
2024-02-16T05:38:29.986Z INFO        ... Created Oracle REST Data Services proxy user
2024-02-16T05:38:31.158Z INFO        ... Created Oracle REST Data Services schema
2024-02-16T05:38:32.130Z INFO        ... Granted privileges to Oracle REST Data Services
2024-02-16T05:38:35.984Z INFO        ... Created Oracle REST Data Services database objects
2024-02-16T05:38:51.981Z INFO        Completed installation for Oracle REST Data Services version 23.4.0.r3461619. Elapsed time: 00:00:24.541

2024-02-16T05:38:52.103Z INFO        Completed configuring PL/SQL gateway user for Oracle REST Data Services version 23.4.0.r3461619. Elapsed time: 00:00:00.116

2024-02-16T05:38:52.103Z INFO        Log file written to /u01/app/ords/logs/ords_install_2024-02-16_053827_31798.log
2024-02-16T05:38:52.352Z INFO        HTTP and HTTP/2 cleartext listening on host: 0.0.0.0 port: 8080
2024-02-16T05:38:52.407Z INFO        Disabling document root because the specified folder does not exist: /etc/ords/config/global/doc_root
2024-02-16T05:38:52.408Z INFO        Default forwarding from / to contextRoot configured.
2024-02-16T05:38:56.989Z INFO        Configuration properties for: |default|lo|
db.servicename=pdbapex
standalone.context.path=/ords
db.hostname=localhost
db.password=******
conf.use.wallet=true
security.requestValidationFunction=ords_util.authorize_plsql_gateway
standalone.static.context.path=/i
database.api.enabled=true
db.username=ORDS_PUBLIC_USER
standalone.http.port=8080
standalone.static.path=/u01/app/apex/ords/images/
restEnabledSql.active=true
resource.templates.enabled=false
plsql.gateway.mode=proxied
db.port=1521
feature.sdw=true
config.required=true
db.connectionType=basic
standalone.doc.root=/etc/ords/config/global/doc_root

2024-02-16T05:38:56.990Z WARNING     *** jdbc.MaxLimit in configuration |default|lo| is using a value of 20, this setting may not be sized adequately for a production environment ***
2024-02-16T05:38:56.991Z WARNING     *** jdbc.InitialLimit in configuration |default|lo| is using a value of 3, this setting may not be sized adequately for a production environment ***
2024-02-16T05:39:01.635Z INFO        

Mapped local pools from /etc/ords/config/databases:
  /ords/                              => default                        => VALID     


2024-02-16T05:39:01.850Z INFO        Oracle REST Data Services initialized
Oracle REST Data Services version : 23.4.0.r3461619
Oracle REST Data Services server info: jetty/10.0.18
Oracle REST Data Services java info: OpenJDK 64-Bit Server VM 11.0.22+7-LTS



针对前面的选择,可以使用 ords config list 列出设置

[oracle@dbserver ~]$ ords config list

ORDS: Release 23.4 Production on Fri Feb 16 06:07:02 2024

Copyright (c) 2010, 2024, Oracle.

Configuration:
  /etc/ords/config/

Database pool: default

Setting                              Value                               Source     
----------------------------------   ---------------------------------   -----------
database.api.enabled                 true                                Global     
db.connectionType                    basic                               Pool      
db.hostname                          localhost                           Pool      
db.password                          ******                              Pool Wallet


15.卸载APEX
  如果安装出现了问题,可以卸载

  卸载 apex
  cd /u01/app/apex
  sql>conn / as sysdba;
  sql>alter session set container=pdbapex;
  sql> @apxremov.sql

  卸载 ords
  $ ords uninstall   --回车即可卸载

16.拷贝Apex的静态文件到ords目录
  cp -r /u01/app/apex/images /u01/app/ords

17.设置开机自启动

# cat > /etc/systemd/system/ords.service << EOF

[Unit]

Description=Start Oracle REST Data Services

After=oracle_has.service

[Service]

User=oracle
Environment=ORDS_CONFIG='/etc/ords/config'
Environment=JDK_JAVA_OPTIONS='-Dconfig.url=/work/dbtools-dev/config/'

ExecStart=/u01/app/ords/bin/ords serve --apex-images /u01/app/apex/images

StandardOutput=syslog

SyslogIdentifier=ords

[Install]

WantedBy=multi-user.target

EOF


18. 访问APEX

http://192.168.133.120:8080

 



点击右下角的下箭头按钮,以管理员权限登录;不用工作区登录,之后,可以创建自己的工作区等等。
 


 



到此,APEX23.2 安装完毕,可以尽情去使用低代码平台吧。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/1559490.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

Nest安装及使用~

前提条件 请确保您的操作系统上安装了 Node.js&#xff08;版本 > 16&#xff09; &#x1f4da;要查看指南&#xff0c;请访问 https://docs.nestjs.com/ &#x1f4da;要查看中文 指南&#xff0c; 请访问 https://docs.nestjs.cn/ $ node -v v16.18.1 $ npm -v 7.x.x安…

Beans模块之工厂模块DisposableBean

博主介绍&#xff1a;✌全网粉丝5W&#xff0c;全栈开发工程师&#xff0c;从事多年软件开发&#xff0c;在大厂呆过。持有软件中级、六级等证书。可提供微服务项目搭建与毕业项目实战&#xff0c;博主也曾写过优秀论文&#xff0c;查重率极低&#xff0c;在这方面有丰富的经验…

linux下minio部署和nginx配置

1 下载minio wget https://dl.min.io/server/minio/release/linux-amd64/minio chmod x minio #启动minio&#xff0c;文件数据存放在/data目录 ./minio server /data2 部署minio 下载minio后赋予可执行权限就可以运行了&#xff0c;这里我整理了遇到的坑和解决问题的最终配置…

ngrok 内网穿透使用

title: ngrok 内网穿透使用 search: 2024-02-29 文章目录 背景Windows安装ngrok指令授权ngrok个人用户Authtoken穿透 http 或 https 服务ngrok的代理http指令ngrok获得静态域名指令ngrok的代理ssh指令 背景 这次寒假回家&#xff0c;很无奈&#xff0c;很多东西放在项目组服务…

vuex插件实现数据共享

vuex插件 vuex是管理多个vue通用的数据的插件.(状态管理工具,状态是数据) 我们对于多个vue文件之间的共同数据,是用props传递,或者对于一个vue实例对象,进行绑定,传参,也是多次传参,多个文件之间,比较麻烦. 但是我们vuex会创建一个公共对象,从这个公共对象上赋值,比较简单易…

HarmonyOS 应用开发之使用隐式Want打开网址

以打开浏览器为例&#xff0c;假设设备上安装了一个或多个浏览器应用。为了使浏览器应用能够正常工作&#xff0c;需要在 module.json5配置文件 进行配置&#xff0c;具体配置如下&#xff1a; {"module": {..."abilities": [{..."skills": [{&…

Spring面试题(二)

一、老杜讲解Spring6整理 1. Spring有哪几大模块&#xff1f; 2. IoC控制反转的实现是依赖注入&#xff0c;set依赖注入的原理是什么&#xff1f; 3. 自动装配有哪几种&#xff1f;它的原理是基于构造注入还是基于set注入&#xff1f; 4. Spring容器中的Bean是单例还是多例…

Mybatis-Plus分页查询时碰到`total`有值但`records`为空

个人原因&#xff1a;Mybatis-Plus分页插件设置了maxLimit单页条数 // 分页插件配置 PaginationInnerInterceptor paginationInnerInterceptor new PaginationInnerInterceptor(DbType.MYSQL); paginationInnerInterceptor.setMaxLimit(200L); // 单页分页条数限制(默认无限…

博客页面---前端

目录 主页 HTML CSS 文章详细页面 HTML CSS 登录页面 HTML CSS 文章编辑页 HTML CSS 这只是前端的页面组成&#xff0c;还没有接入后端&#xff0c;并不是完全体 主页 HTML <!DOCTYPE html> <!-- <html lang"en"> --> <head>&…

【PSINS工具箱】基于工具箱,自己设计的轨迹,并生成IMU数据和三维视图(完整代码)

完整代码 在有工具箱的情况下&#xff0c;直接运行代码&#xff0c;即可 % 基于PSINS工具箱的三维轨迹生成、三维图像绘制与IMU数据生成 % date:2024-2-13 % Evand&#xff08;evandworldqq.com&#xff09; % Ver1 clear;clc;close all; glvs ts 0.1; % sampling int…

Redis(十九)缓存过期淘汰策略

文章目录 面试题内存满怎么办写入的数据如何删除的&#xff08;删除策略&#xff09;立即删除惰性删除上面两种方案都走极端 缓存淘汰策略配置文件LRU和LFU区别有哪些如何配置、修改 redis缓存淘汰策略配置性能建议 面试题 生产上你们的redis内存设置多少?如何配置、修改redi…

动态规划-最长回文子串

动态规划-最长回文子串 原题描述解答中心移动思想代码实现复杂度分析时间复杂度空间复杂度 动态规划思想代码实现复杂度分析时间复杂度空间复杂度 突然觉得很有必要将学过的内容记录下来&#xff0c;这样后续在需要用到的时候就可以避免从头进行学习&#xff0c;而去看自己之前…

【Threejs基础教程-光影篇】5.2 Threejs 阴影系统

5.2 Threejs阴影系统 学习ThreeJS的捷径在用光影系统之前threejs是实时光影web端目前没有优质的实时光影实时光影会大幅增加渲染压力没有独显的电脑不建议添加实时光影 阴影配置什么样的灯光可以产生阴影什么样的物体可以产生阴影和接受阴影注意开启阴影渲染灵活运用阴影 平行光…

【Linux】普通用户提升权限

概述 在Linux环境下&#xff0c;给普通用户提权的方式&#xff0c;su与sudo命令&#xff0c;su是将一个普通用户登录为root&#xff0c;而sudo则是将普通用户短暂提升权限 普通用户使用$ root使用# 使用su提升权限 如果我们使用su将用户提升为root&#xff0c;此时需要输入…

计算机网络:数据链路层 - 封装成帧 透明传输 差错检测

计算机网络&#xff1a;数据链路层 - 封装成帧 & 透明传输 & 差错检测 数据链路层概述封装成帧透明传输差错检测 数据链路层概述 从数据链路层来看&#xff0c;主机 H1 到 H2 的通信可以看成是在四段不同的链路上的通信组成的&#xff0c;所谓链路就是从一个节点到相邻…

回溯算法|39.组合总和

力扣题目链接 class Solution { private:vector<vector<int>> result;vector<int> path;void backtracking(vector<int>& candidates, int target, int sum, int startIndex) {if (sum > target) {return;}if (sum target) {result.push_back…

CISP考前笔记

1软件需求分析是保证软件质量的重要步骤&#xff0c;它的实施应该是在 软件定义阶段 1语句覆盖最弱&#xff0c;只需要让程序中的语句都执行一遍即可 。分支覆盖又称判定覆盖&#xff1a;使得程序中每个判断的取真分支和取假分支至少经历一次&#xff0c;即判断的真假均曾被满足…

K8S命令行可视化实验

以下为K8s命令行可视化工具的实验内容&#xff0c;相比于直接使用命令行&#xff0c;可视化工具可能更直观、更易于操作。 Lens Lens是用于监控和调试的K8S IDE。可以在Windows、Linux以及Mac桌面上完美运行。在 Kubernetes 上&#xff1a; 托管地址&#xff1a;github/lensa…

登录者个人信息查询

目录 &#x1f95e;1.vo层描述 &#x1f37f;2..vo层创建 &#x1f32d;3.编写controller层 &#x1f953;4.service层 &#x1f9c2;5.测试 1.vo层描述 Spring Boot项目中的实体类通常用于映射数据库表&#xff0c;包含了业务对象的所有属性。然而&#xff0c;前端或其…

Verilog基础【一】

文章目录 1.1 第一个verilog设计1.2 Verilog 简介1.3 Verilog环境搭建1.4 Verilog 设计方法设计方法设计流程 2.1 Verilog 基础语法格式注释标识符与关键字 2.2 Verilog 数值表示数值种类整数数值表示方法实数表示方法十进制&#xff1a;科学计数法&#xff1a; 字符串表示方法…