1 虚拟机使用的是JDK1.4,而maximo最佳支持是1.6,管理员用户视图流程显示存在问题。
2 安装过程出现table not found错误,查看源码,发现是Oracle Text 组件未安装,因此第一步:安装oracle text 组件
参考http://www.cnblogs.com/mybook/archive/2012/12/17/2822299.html
首先第一步查看是否安装Oracle Text,使用命令
select username from dba_users where username='CTXSYS'若为空则表示未安装全文检索
首先登录数据库实例,然后执行以下命令
逐行执行如下脚本
//未为全文检索创建表空间,使用的SYSAUX空间 @D:\program\oracle\product\11.2.0\dbhome_1\ctx\admin\catctx.sql oracle SYSAUX TEMP NOLOCKc @D:\program\oracle\product\11.2.0\dbhome_1\ctx\admin\catctx.sql oracle SYSAUX TEMP NOLOCK connect "CTXSYS"/"oracle" @D:\program\oracle\product\11.2.0\dbhome_1\ctx\admin\defaults\dr0defin.sql "AMERICAN" //英文全文检索,可能存在问题 set pages 1000 col object_name format a40 col object_type format a20 col comp_name format a30 column library_name format a8 column file_spec format a60 wrap
注意:该步骤可能会报错,执行如下操作:
1) 给ctx用户赋dbms_lobs权限
2) 由于对组件进行了改动,因此用sys登录后重新编译
密码oracle可能安全级别过低,因此使用了高级别的密码,比如oracle123
3 创建表空间,用户,付给权限,执行如下命令
Create tablespace SCCDDATA datafile 'D:\program\oracle\oradata\maximo\SCCDDATA.DBF' size 1500M autoextend on; Create user maximo identified by max123 default tablespace SCCDDATA temporary tablespace TEMP; grant create job to maximo; grant create trigger to maximo; grant create session to maximo; grant create sequence to maximo; grant create synonym to maximo; grant create table to maximo; grant create view to maximo; grant create procedure to maximo; grant alter session to maximo; grant execute on ctxsys.ctx_ddl to maximo; grant dba to maximo; alter user maximo quota unlimited on SCCDDATA;
注意:可能出现的错误
数据库ERROR:ORA-12560: TNS: 协议适配器错误的解决方法: 指定数据库的sid
set oracle_sid = maximo,或在系统变量里设定oracle_sid = maximo
备份及恢复数据库命令:
备份:
imp maximo/max123@maximo file=E:\ora2013-2-1.dmp full=Y
恢复:
exp maximo/max123@orabiz file=/tmp/20130204.dmp full=Y
dump可能会失败,原因可能是游标值过小,尝试将游标值设大
alter system set open_cursors=1500;
可使用
D:\IBM\SMP\maximo\tools\maximo>maxinst.bat -sSCCDDATA -tSCCDDATA
命令恢复数据库, 发生错误,如下
DBPROBLEM_PMP: V710-0, Current release DB build: V7102-01, Last release DB build : V710-59 Database update in progress, please wait.......... Current version :V710-0 Updating To :V7102-01 java.sql.SQLException: ORA-01000: 超出打开游标的最大数 ORA-01000: 超出打开游标的最大数
增大即可
4 安装weblogic
-------------------------------------------------------------------------------
WLS Zip Distribution for Oracle WebLogic Server 10.3.6.0
-------------------------------------------------------------------------------
The WLS zip distribution is intended for development use. It is supported on
Windows, Linux and Mac OS X systems. It contains the necessary artifacts to
develop and test applications on WebLogic Server.
An optional supplemental zip (wls1036_dev_supplemental.zip) is
available as a separate download. The supplemental zip contains samples,
evaluation database (Derby) and L10N console help files.
The following instructions should help in quickly setting up WLS. Please refer
to the general WLS documentation for detailed instructions.
QUICKSTART
----------
4.1. Extract the contents of the zip to a directory. This directory is now the
MW_HOME (eg: /home/myhome/mywls)
4.2. Setup JAVA_HOME and MW_HOME variables in the current shell
Linux
$ export JAVA_HOME=/home/myhome/myjavahome
$ export MW_HOME=/home/myhome/mywls
Mac
$ export JAVA_HOME=
/System/Library/Frameworks/JavaVM.framework/Versions/1.6/Home
$ export MW_HOME=/home/myhome/mywls
Windows
> set JAVA_HOME=C:\home\myhome\myjavahome
> set MW_HOME=C:\home\myhome\mywls
This version of WLS requires JDK 1.6. For Mac use 1.6.0_20 latest update.
Ensure that you have the proper JDK version installed.
4.3. Run the installation configuration script in the MW_HOME directory
(This step is required to be run only once. If you move the installation to
another location/machine, you need to rerun this step)
Linux/Mac
$ ./configure.sh
Windows
> configure.cmd
This step also sets the WLS environment for the current shell. So, the next
step can be ommitted.
4.4. Setup WLS environment in the current shell.
Linux
$ . $MW_HOME/wlserver/server/bin/setWLSEnv.sh
Mac
$ export USER_MEM_ARGS="-Xmx1024m -XX:PermSize=256m"
$ . $MW_HOME/wlserver/server/bin/setWLSEnv.sh
Windows
> %MW_HOME%\wlserver\server\bin\setWLSEnv.cmd
4.5 以图形化界面创建domain
> %MW_HOME%\wlserver\common\bin\config.cmd
4.6 将domain内setDomainEnv内,增大虚拟机内存
-Xms512m -Xmx512m
4.7 进入domain执行startWebLogic命令
4.8 安装maximo,顺序点击安装即可
4.9 浏览器进入'http://localhost:7001/console',部署maximo
附:官方文档
~. Create a new WLS domain and start WLS.
(It is recommended that you create the domains outside the MW_HOME)
Linux
$ mkdir /home/myhome/mydomain
$ cd /home/myhome/mydomain
$ $JAVA_HOME/bin/java -Xmx1024m -XX:MaxPermSize=128m weblogic.Server
Mac
$ mkdir /home/myhome/mydomain
$ cd /home/myhome/mydomain
$ $JAVA_HOME/bin/java -Xmx1024m -XX:MaxPermSize=256m weblogic.Server
Windows
$ mkdir C:\home\myhome\mydomain
$ cd C:\home\myhome\mydomain
$ %JAVA_HOME%\bin\java.exe -Xmx1024m -XX:MaxPermSize=128m weblogic.Server
Once the domain is created, you can shutdown WLS and restart it with the
scripts provided in the newly created domain.
Note: You can also create the domain by invoking the GUI configuration
wizard (Run MW_HOME/wlserver/common/bin/config.[sh|cmd])
6. If you already have an existing domain that you want to run with this
installation, edit the DOMAIN_HOME/bin/setDomainEnv.sh script and change the
WL_HOME to point to the new installation - ${MW_HOME}/wlserver/
Note: If the existing domain has samples configured, the server will issue
failures during startup as samples are not included in the zip distribution.
7. Start a browser and open up url - 'http://localhost:7001/console' to
administer the server.
8. If you need samples, evaluation database (Derby) or console help files for
for non-english locales, you can download the supplemental zip and extract
it under MW_HOME. Follow instructions in README_SUPP.txt to properly setup
samples.
相关推荐
Maximo7.5安装说明文档
IBM蓝色脉动Maximo75安装.pdf。IBM官方文档。
### Maximo7安装配置说明书及BIRT报表配置 #### 一、Maximo7与BIRT简介 Maximo是IBM的一款企业资产管理(EAM)软件,主要用于帮助企业和组织管理其资产和设备的整个生命周期,包括维护、维修和服务。而Business ...
maximo 安装指南 for weblogic (windows version)
安装过程分为两个主要步骤:中间件安装和Maximo安装。 - **中间件**: - **WAS (WebSphere Application Server)**: 提供运行环境。 - **DB2**: 存储数据。 - **Maximo**: - **语言**: 选择合适的语言包。 - **...
### Maximo 下安装 DB2 的详细步骤与注意事项 在企业级应用环境中,Maximo 和 DB2 的集成可以提供强大的资产管理和服务管理解决方案。本文将详细介绍如何在 Maximo 系统中安装 DB2 数据库,帮助读者顺利完成安装...
6. 创建一个名为`V7`的文件夹(名称可自定义),并将Maximo安装目录下的`C:\IBM\SMP\maximo\reports\birt`中的`libraries`和`templates`两个文件夹复制到这个新创建的`V7`文件夹。 7. 启动BIRT IDE(`eclipsebirt...
本文档提供了 Maximo 7.5 系统的安装指南,涵盖了安装前的准备、安装 Oracle 数据库、安装 Weblogic 服务器、安装 Maximo 等多个方面的内容,为用户提供了一个详细的安装指南。 一、 安装前的准备 在安装 Maximo ...
本安装手册将指导用户逐步完成Maximo 7.1的部署。 1. **系统架构和组件** Maximo 7.1 的基础架构需要一个或多个中间件服务器来支撑,这些服务器可能包括: - **Database** - 用于存储系统数据,例如Oracle 10g...
首先,"62_mx_install_bea814_win MAXIMO安装指南(WIN && BEA).pdf" 这份文件提供了在Windows操作系统上安装MAXIMO 6.2的详细步骤,同时也涵盖了与BEA(BEA Systems,现已被Oracle收购)应用服务器的集成。...
最新版本Maximo7.1.1安装手册。 for Was
手册可能详述了如何下载并安装Maximo安装程序,如何配置系统环境变量,以及如何处理可能出现的依赖问题。 2. **Weblogic11g应用服务器**:Weblogic11g是Oracle公司的一个中间件产品,常作为Java应用服务器使用。在...
在这里,"information.gif"应是位于Maximo安装目录下的可用图片文件。 4. **针对不同页面定制链接**: 如果需要为特定页面添加不同的链接,你可以直接修改Library文件中对应的Header节点,或者创建一个新的Header...
7. **pdf_mam_install_was.pdf**:与前一个文档类似,但针对的是IBM WebSphere Application Server的Maximo安装。WebSphere是IBM自己的应用服务器,也是部署Maximo的常见平台。此文档将指导用户在WebSphere上成功...
- 在 Maximo 安装路径 `C:\IBM\SMP\maximo\applications\maximo\lib` 下找到 JDBC 驱动 jar 文件,将其复制到: - `eclipse\plugins\org.eclipse.birt.report.viewer_2.3.2.r232_20090212\birt\WEBINF\lib` - 注意...
Maximo 7.1版本的安装与配置过程涉及多个步骤,其中数据库的搭建尤为关键,它直接关系到系统运行的稳定性和性能。本文将深入解析Maximo 7.1安装过程中数据库建库SQL命令的细节,以及这些命令背后的意义,帮助读者更...
MAXIMO-Weblogic集群安装
【MAXIMO6安装报告】 MAXIMO6是一款由IBM开发的企业资产管理软件,主要用于帮助组织管理和优化其资产生命周期,包括设备、设施、库存等。本报告将详细介绍MAXIMO6的安装过程和部署步骤,以便构建一个基本的MAXIMO...