修改资料档案库 Pointing OBIEE 11G to new BIPLATFORM and MDS Schemas

本文介绍了解决 Oracle Business Intelligence Enterprise Edition (OBIEE) 11G 在原有 BIPLATFORM 和 MDS 架构不可用时如何重新指向新的架构的方法。通过使用 Repository Creation Utility (RCU) 创建新的架构,并在 Enterprise Manager 中配置调度设置,在控制台中更新数据源连接池,从而避免了重新安装 OBIEE 的需求。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Pointing OBIEE 11G to new BIPLATFORM and MDS Schemas

Many of the Oracle Fusion Middleware components require the existence of schemas in a database prior to installation. These schemas are created and loaded in your database using the Repository Creation Utility (RCU).

I created  BIPLATFORM and MDS Schemas  by executing Repository Creation Utility(RCU) prior to OBIEE 11G installation and configure those while installing OBIEE 11G .

For Example I created   BIPLATFORM and MDS Schemas in one server and Installed OBIEE in another server , Everything is fine .

Unfortunately the server that I used to create Schemas(BIPLATFORM and MDS ) got crashed 

:(

   and my OBIEE services got down .

We can do it without reinstalling OBIEE11G again .

To solve this problem  follow the below steps :

We need to make changes in both Enterprise Manager(http://localhost:7001/em) for Scheduler Configuration and Console http://localhost:7001/console ) for pointing BIPLATFORM and MDS to new schemas .

Step1: Download  Repository Creation Utility (RCU) from the below link.

http://www.oracle.com/technetwork/middleware/bi-enterprise-edition/downloads/biee-111150-393613.html

Extract and navigate to rcuHome\BIN and double click on rcu.bat and create Schemas .

In my case created schemas are DEV1_BIPLATFORM and DEV1_MDS .

Step2: Login to em (http://localhost:7001/em). Navigate to Business Intelligence –> coreapplication and click on Schedular tab here you can find the TNS entry and User and password of the old schemas .


 

Click on Lock&Edit and change the TNS Entries as per ur database and enter User and Password  of BIPLATFORM .

Click on Apply and Activate changes .


 

After activated the changes it should ask you to restart some services DONT DO THATbecause we still need changes in console .

Step3: Login to http://localhost:7001/console and click on Services –> Data Sources .


 

 

We have to change the connection pool for the following schemas shown in screenshot.


Click on bip_datasource


Click on Connection Pool

 

Here we have to give the following parameters .

URL: jdbc:oracle:thin:@<hostname>:<port number>/<Service Name>

(For Eg:jdbc:oracle:thin:@server1:1522/orcl)

 

 

Properties:user

=DEV1_BIPLATFORM

oracle.net.CONNECT_TIMEOUT=10000

Password: <Enter the DEV1_BIPLATFORM’s password)

Confirm Password:<Enter the DEV1_BIPLATFORM’s password again)

and 

 it .

Similarly do the same for the schema “mds-owsm”  that I highlighted in the previous screenshot .

Now, Stop all the OBIEE services and start it again .

In windows : Start –>All Programs –> Oracle Business Intelligence –> Stop BI Services/Start BI Services .

In Linux : Click Here for the steps .

Note : If you have a problem in starting any OPMN services first start bi_server1 that i mentioned in my blog entry that I have given above then try to start OPMN services again . you will get all the services up and running .

Hope this will help you .

-Prasad Madhasi .

 

源文档 <http://prasadmadhasi.com/2011/11/29/pointing-obiee-11g-to-new-biplatform-and-mds-schemas/>

<think>我们正在配置Vitis平台文件路径以支持Alveo PCIe卡,特别是设置环境变量PLATFORM_REPO_PATHS来指向Vitis平台文件的位置。 根据引用内容,我们知道Vitis平台可以从Vitis嵌入式平台下载页面下载,并且对于应用加速开发流程,平台需要运行Linux并集成XRT。 步骤: 1. 确保已经下载并安装了所需的Alveo卡平台文件。这些平台文件通常以.xpfm扩展名结尾。 2. 设置环境变量PLATFORM_REPO_PATHS,将其指向包含这些平台文件的目录。 例如,假设我们将平台文件下载并解压在/home/user/Alveo/platforms目录下,那么我们可以这样设置环境变量: 在Linux系统中: - 如果使用bash,可以在~/.bashrc文件中添加: export PLATFORM_REPO_PATHS=/home/user/Alveo/platforms - 然后运行:source ~/.bashrc 3. 验证设置:在Vitis中创建新工程时,应该能够看到平台列表中出现Alveo卡对应的平台。 注意:平台目录结构应该正确,即每个平台是一个子目录,子目录中包含.xpfm文件。例如: /home/user/Alveo/platforms/xilinx_u200_xdma_201830_2/xilinx_u200_xdma_201830_2.xpfm 4. 另外,根据引用[2],对于应用加速开发流程,嵌入式平台必须运行Linux并集成XRT。因此,请确保下载的平台是针对Alveo卡并且支持应用加速的。 5. 如果平台文件是多个,可以设置多个路径,用冒号分隔(Linux)或分号分隔(Windows): export PLATFORM_REPO_PATHS=/path/to/platforms1:/path/to/platforms2 6. 在Vitis中使用时,还可以在Vitis IDE的设置中指定平台路径:通过菜单栏的“Window”->“Preferences”->“Vitis”->“Platform Repository paths”添加路径。 7. 对于非嵌入式平台(如纯加速平台),同样适用。 重要:请根据实际安装路径调整。 引用说明:我们参考了Vitis文档中关于平台使用的部分[^2]。</think>### 配置 Vitis 平台路径支持 Alveo PCIe 加速卡 要正确设置 `PLATFORM_REPO_PATHS` 环境变量以使用 Alveo PCIe 加速卡,请按以下步骤操作: --- #### 1. **获取 Alveo 平台文件** - 从 Xilinx 官方下载 Alveo 平台文件(扩展名 `.xpfm`) - 推荐平台(根据卡型号选择): ```bash # U200 示例 wget https://www.xilinx.com/bin/public/openDownload?filename=xilinx_u200_gen3x16_xdma_1_202110_1.xpfm -O u200.xpfm # U250 示例 wget https://www.xilinx.com/bin/public/openDownload?filename=xilinx_u250_gen3x16_xdma_4_1_202210_1.xpfm -O u250.xpfm ``` - 完整平台列表参考 [Vitis 嵌入式平台下载页面](https://www.xilinx.com/support/download/index.html/content/xilinx/en/downloadNav/embedded-platforms.html)[^2] --- #### 2. **设置环境变量** **Linux 系统:** ```bash # 永久设置(推荐) echo 'export PLATFORM_REPO_PATHS="/path/to/your/platforms"' >> ~/.bashrc source ~/.bashrc # 临时设置 export PLATFORM_REPO_PATHS="/home/user/vitis_platforms/alveo" ``` **Windows 系统:** ```powershell # PowerShell 永久设置 [System.Environment]::SetEnvironmentVariable('PLATFORM_REPO_PATHS', 'C:\vitis_platforms\alveo', [System.EnvironmentVariableTarget]::User) ``` --- #### 3. **验证路径配置** ```bash # 检查环境变量 echo $PLATFORM_REPO_PATHS # 在 Vitis 中验证 vitis -workspace my_project & ``` 在 Vitis IDE 中: 1. 创建新加速应用工程 2. 在 **Platform** 选择界面应显示 Alveo 平台 3. 确认平台状态显示为 **Valid** --- #### 4. **目录结构要求** 确保平台目录结构符合规范: ``` /path/to/your/platforms/ ├── xilinx_u200_xdma_201830_2/ │ ├── xilinx_u200_xdma_201830_2.xpfm │ └── hw/ ├── xilinx_u250_xdma_201830_1/ │ ├── xilinx_u250_xdma_201830_1.xpfm │ └── hw/ └── ...其他平台... ``` --- #### 5. **关键注意事项** 1. **XRT 集成**:确保平台包含 Xilinx Runtime (XRT),这是应用加速的必要条件[^2] 2. **平台兼容性**: - Alveo U200:`xilinx_u200_*` 平台 - Alveo U250:`xilinx_u250_*` 平台 - Alveo U280:`xilinx_u280_*` 平台 3. **工厂镜像恢复**:若平台加载失败,可能需要恢复出厂镜像(参考 AR# 71757) --- #### 6. **Vitis 工程配置示例** 在 Makefile 或脚本中显式指定平台: ```makefile # Makefile 示例 PLATFORM = xilinx_u250_gen3x16_xdma_4_1_202210_1 TARGET = hw all: v++ -t $(TARGET) --platform $(PLATFORM) -c -k kernel_name ... ``` > **提示**:使用 `platforminfo` 命令检查平台详情: > ```bash > platforminfo /path/to/platform.xpfm | grep "Supported Accelerations" > ```
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值