oracle 如何登录localhost ords/apex

hrirmatl  于 2023-10-16  发布在  Oracle
关注(0)|答案(1)|浏览(172)

我对Ords和Apex完全陌生,所以请容忍我:)。如何登录到localhost ords?我已经下载了最新的23 Apex内部部署以及最新的Ords,并设置了一切。我不会使用云。我确实从Windows创建了一个工作区,并且能够在我的Windows机器上登录,但不能通过终端($google-chrome)登录我的Linux服务器。我的Linux是一个虚拟环境。我可以使用Tomcat启动Apex,并可以使用ords config(java)自行启动Ords。下面是我的配置。您提供的任何帮助都将受到欢迎。我的工作区是什么?我有用户名和密码

db.servicename=<serviceName>

standalone.context.path=/ords

db.hostname=<Ipaddress>

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=/home/oracle/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=/home/oracle/ords/bin/ordsconfig/global/doc_root
y3bcpkx1

y3bcpkx11#

我不清楚你是在询问将ORDS连接到数据库,还是试图从命令行将ORDS作为最终用户使用:
如果尝试以用户身份登录,则无法通过命令行访问ORDS;您需要使用Web浏览器并通过APEX UI登录。您可以使用SQLPlus或SQLcl作为客户端与APEX和ORDS PL/SQL API交互,但这是登录到 * 数据库 *,而不是通过ORDS。
如果尝试将ORDS连接到后端数据库,安装指南中应包括以下内容:https://docs.oracle.com/en/database/oracle/oracle-rest-data-services/22.1/ordig/index.html#Oracle%C2%AE-REST-Data-Services

相关问题