DB Time

物理CPU和逻辑CPU

首先得理解物理cpu和逻辑cpu的区别

物理cpu比较好理解,就是主板上有几个cpu就有多少个物理CPU,没颗物理cpu有1个或者多个物理内核,每个内核都可以作为单独cpu使用,为了和物理cpu区分开,内核的cpu成为逻辑cpu,因此
逻辑cpu = 物理cpu * cpu核数

在开启超线程后,逻辑cpu计算如下:

逻辑cpu = 物理cpu * cpu核数 * 2

Read the rest of this entry

# 方案概述

OIM可以通过官方Database Applications Table进行连接数据库做用户数据推送

# 安装

1. 从oracle官网下载Database Applications Table安装包

2. 将zip安装包上传到服务器并解压,解压后需要将生成器一起解压

$ unzip dbat-12.2.1.3.0.zip
$ cd dbat-12.2.1.3.0
$ cd dbat-12.2.1.3.0/generator/
$ unzip dbat-generator-12.2.1.3.0.zip
$ ll
total 7300
drwxr-xr-x 5 oracle oinstall    4096 Mar 14 00:24 dbat-generator-12.2.1.3.0
-rw-r--r-- 1 oracle oinstall 7468754 Mar 22  2019 dbat-generator-12.2.1.3.0.zip

Read the rest of this entry

业务场景

目前已经配了OIM user到process form的映射(通过prepopulate配置),但是如果oim user信息发生变更,不会自动同步到process form中,以webservice connector为例,期望oim user信息发生变更,webservice的表单能够自动同步,自动发起update操作。

实现

在OIM中,用户字段可以扩展,扩展字段的自动同步和标准字段的稍有不同,我在下文中会标注出。

概述

在oim中,同步操作就是一个task,配置同步的过程也就是配置task的过程,task分为两部分,oim user的task本身已经定义了一部分字段,可以增加,连接器表单task不同的连接器都会预定义一些字段,可以自行增加,同步的过程如下:

Read the rest of this entry

背景介绍

oim user需要添加自定义字段,通过webservice connector推送到业务系统,webservice的表单也需要添加自定义字段,并且oim user中的字段能够映射到webservice中的自定义字段。

字段添加

1. 登录sysadmin(http://10.60.25.67:14000/sysadmin)

2. 点击SandBoxes创建沙盒,沙盒名称自定义,沙盒创建好默认激活

Read the rest of this entry

  • 创建Mail Server的IT Resource
  • 登录EM,进入System MBean Browser

Read the rest of this entry

业务介绍

现需要将OIM用户推送到welink系统,通过webservice connector实现,并且要求符合指定规则用户能够自动同步。

安装Webservice Connector

1. 从oracle官网下载WebServices Connector.将zip文件Webservices-11.1.1.5.0.zip上传到服务器,解压后在进入Webservices-11.1.1.5.0目录,执行以下命令生成一个connector

[oracle]
$ cd Webservices-11.1.1.5.0
$ chmod +x  build-connector.sh
$ ./build-connector.sh "Welink" "WL"

Read the rest of this entry