oracle ACL 操作

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
begin
dbms_network_acl_admin.create_acl ( -- 创建访问控制文件(CL)
acl => 'httprequestpermission.xml', -- 文件名称
description => 'HTTP Access', -- 描述
principal => 'user', -- 授权或者取消授权账号,大小写敏感
is_grant => TRUE, -- 授权还是取消授权
privilege => 'connect', -- 授权或者取消授权的权限列表
start_date => null, -- 起始日期
end_date => null -- 结束日期
);
commit;
end;
begin
dbms_network_acl_admin.add_privilege ( -- 添加访问权限列表项
acl => 'httprequestpermission.xml', -- 刚才创建的cl名称
principal => 'user', -- 授权或取消授权用户
is_grant => TRUE, -- 与上同
privilege => 'resolve', -- 权限列表
start_date => null,
end_date => null
);
commit;
end;
begin
dbms_network_acl_admin.assign_acl ( -- 该段命令意思是允许访问cl名为tl_http.xml下授权的用户,使用racle网络访问包,所允许访问的目的主机,及其端口范围。
acl => 'httprequestpermission.xml',
host => '127.0.0.1', -- ip地址或者域名,填写ttps://localhost:9000/hello与ttps://localhost:9000/是会报ost无效的
-- 且建议使用p地址或者使用域名,若用ocalhost,当racle不是安装在本机上的情况下,会出现问题
lower_port => 389, -- 允许访问的起始端口号
upper_port => Null -- 允许访问的截止端口号
);
commit;
end;

oracle 存储过程执行java进行密码加密成LDAP方式2

步骤

1.先写 java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import sun.misc.BASE64Encoder;


public class PwdToLdap {

public static String ldapSHA(String pwd) {
byte[] md = hexStringTobyteArray(pwd);
return "{SHA}" + (new BASE64Encoder()).encode(md);
}

public static byte[] hexStringTobyteArray(String str) {
if(str == null || str.trim().equals("")) {
return new byte[0];
}


byte[] bytes = new byte[str.length() / 2];
for(int i = 0; i < str.length() / 2; i++) {
String subStr = str.substring(i * 2, i * 2 + 2);
bytes[i] = (byte) Integer.parseInt(subStr, 16);
}
return bytes;
}


}
阅读更多

oracle 存储过程执行java进行密码加密成LDAP方式

步骤

1.先写 java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import sun.misc.BASE64Encoder;


public class PwdToLdap {

public static String ldapSHA(String pwd) {
byte[] md = hexStringTobyteArray(pwd);
return "{SHA}" + (new BASE64Encoder()).encode(md);
}

public static byte[] hexStringTobyteArray(String str) {
if(str == null || str.trim().equals("")) {
return new byte[0];
}


byte[] bytes = new byte[str.length() / 2];
for(int i = 0; i < str.length() / 2; i++) {
String subStr = str.substring(i * 2, i * 2 + 2);
bytes[i] = (byte) Integer.parseInt(subStr, 16);
}
return bytes;
}


}
阅读更多

oracle创建表空间和用户

创建表空间

1
create tablespace tp datafile '/opt/app/oracle/oradata/orcl/orclpdb/tp.dbf' size 200 m autoextend on next 10 m maxsize unlimited ;
阅读更多