Oracle 视图 V$ASM_ACFS_ENCRYPTION_INFO 官方解释,作用,如何使用详细说明
本站中文解释
Oracle ASM ACFS加密视图V$ASM_ACFS_ENCRYPTION_INFO可以用来查询Oracle ACFS文件系统中加密文件和元数据的加密信息。此视图中的字段信息就是某个文件系统特定加密算法的设定,将每个加密块的加密算法通过此视图查询出来。
使用方法:
1) 首先需要创建一个键管理器。
SQL> CREATE KEYSTORE ‘/etc/oracle/encrypted_data’
IDENTIFIED BY ‘*******’
KEY_SIZE 512 ;
2) 然后需要为ACFS加密文件系统设置一个加密算法:
SQL> ALTER SYSTEM SET ENCRYPTION KEYSTORE_TYPE=ACFS
KEYSTORE ‘/etc/oracle/encrypted_data’
ALGORITHM AES_CBC_256 ;
3) 查看V$ASM_ACFS_ENCRYPTION_INFO视图,从中查看所有文件系统中加密文件和元数据的加密信息。
SQL> SELECT FILE_NAME, ENCRYPTION_ALGORITHM, OFFSET, LENGTH
FROM V$ASM_ACFS_ENCRYPTION_INFO ;
官方英文解释
V$ASM_ACFS_ENCRYPTION_INFO
displays encryption information for every mounted Oracle ACFS.
Column | Datatype | Description |
---|---|---|
|
|
File system mount point (foreign key to |
|
|
Name of the Oracle ADVM device |
|
|
Indicates whether encryption parameters have been set on the file system ( |
|
|
Indicates whether file system level encryption is enabled ( |
|
|
Encryption algorithm used. AES is the only supported algorithm. |
|
|
Key length used for the encryption key |
|
|
Time that the volume was last rekeyed |
|
|
The ID of the container to which the data pertains. Possible values include:
For this view, the value is always |
See Also:
-
Oracle Automatic Storage
Management Administrator’s Guide for more information about Oracle Advanced Cluster File System (Oracle ACFS) -
Oracle Automatic Storage
Management Administrator’s Guide for additional information about using views to display Oracle Advanced Cluster File System (Oracle ACFS) and Oracle ASM Dynamic Volume Manager (Oracle ADVM) information
Note:
To display information about Oracle ACFS file systems or volumes that are located on nodes in an Oracle Flex ASM configuration, you must connect to the Oracle ASM proxy instance instead of the local Oracle ASM instance. For information about Oracle Flex ASM, refer to Oracle Automatic Storage
Management Administrator’s Guide.