zl程序教程

您现在的位置是:首页 >  数据库

当前栏目

Oracle 参数 EXTERNAL_KEYSTORE_CREDENTIAL_LOCATION 官方解释,作用,如何配置最优化建议

Oracle官方配置 如何 建议 作用 解释 参数
2023-06-13 09:11:20 时间
本站中文解释

EXTERNAL_KEYSTORE_CREDENTIAL_LOCATION参数是用来指定在操作系统中保存外部KeyStore凭证文件(Oracle Java Secure Socket Extension(JSSE)工作所需的证书和私钥信息)的路径。

正确设置本参数的方法是:

1. 在Oracle数据库层面上执行ALTER SYSTEM并设置EXTERNAL_KEYSTORE_CREDENTIAL_LOCATION参数:

ALTER SYSTEM SET EXTERNAL_KEYSTORE_CREDENTIAL_LOCATION =

2. 通过SQL*Plus工具将值更新到数据字典中:

ALTER SYSTEM REGISTER;

3. 重启Oracle数据库服务器以应用设置:

SHUTDOWN IMMEDIATE

STARTUP

官方英文解释

EXTERNAL_KEYSTORE_CREDENTIAL_LOCATION specifies the location of the secure external keystore.


This parameter can be set on each instance. Oracle recommends that if the instances have a shared location, then use a directory on the shared location for this parameter and set the same value on all Oracle RAC instances. If the database does not have a shared location, then each instance of the database will have its own directory and the value should be set per-instance.


TDE keystore credentials can be stored in a secure external keystore to automate Transparent Data Encryption (TDE) operations.

To automate the setting of the Master Key in a newly-provisioned PDB, set EXTERNAL_KEYSTORE_CREDENTIAL_LOCATION so that the CDB knows the location of the secure external keystore.

When a file specification is set with this parameter, the secure external keystore is looked for in that location. If the secure external keystore is not found in that location, then this parameter is ignored.

See Also:

Oracle Database Advanced
Security Guide for more information about using TDE


我想要获取技术服务或软件
服务范围:MySQL、ORACLE、SQLSERVER、MongoDB、PostgreSQL 、程序问题
服务方式:远程服务、电话支持、现场服务,沟通指定方式服务
技术标签:数据恢复、安装配置、数据迁移、集群容灾、异常处理、其它问题

本站部分文章参考或来源于网络,如有侵权请联系站长。
数据库远程运维 Oracle 参数 EXTERNAL_KEYSTORE_CREDENTIAL_LOCATION 官方解释,作用,如何配置最优化建议