- 浏览: 78608 次
- 性别:
- 来自: 北京
最新评论
文章列表
General Steps:
1. install and setup Oracle DB
2. create admin user and table space from UCM
3. install stellent UCM
4. configure the Apache server
Detail Steps:
1. Install and setup Oracle DB.
you can download the latest version here:
http://edelivery.oracle.com/EPD/Download/get_form?egro ...
After installed stellent UCM and Apache, start the admin web page:
http://dhcp-beijing-cdc-10-182-106-221.cn.oracle.com/idc
It reports the error:
You don't have permission to access /idc/ on this server.
Fix:
1. Open the $APACHE_HOME/conf/httpd.conf.
2. Change the following lines:
...
when we start weblogic, in some conditions, it will let you input the admin user and password. so the interaction mode can NOT used by your script to start the weblogic bypass the user and password.
There is a way to bypass the weblogic admin user/password when you start the weblogic.
1. The pas ...
Running program in the background:
1. nohup <command> &;
e.g[1]+ Stopped startWebLogic.sh
[oracle@oardc-vm15 admin]$
nohup startWebLogic.sh &
2. <command>, then interaction with <command> such as provide user and password. after ...
Purpose:
check servers if they are alive.
#!/bin/sh
echo "Check Servers status startup...."
MAIL_TITLE="OSL OO DEMO SERVERS Check Failed!"
VM03="oardc-vm03.cn.oracle.com"
VM07="oardc-vm07.cn.oracle.com"
VM15="oardc-vm15.cn.oracle.com&qu ...
Problem:
[oracle@l360cn31 ~]$ sqlplus / as sysdba
SQL*Plus: Release 10.2.0.1.0 - Production on Fri Jan 15 10:21:54 2010
Copyright (c) 1982, 2005, Oracle. All rights reserved.
ERROR:
ORA-01031: insufficient privileges
Solutions:
1. http://www.chinaunix.net/jh/19/132866.html 写道
#### ...
Note: If you don't setup the sudo bypass the password, it will not work well. please see my pre-doc to setup the sudo.
Start UCM server:
#!/bin/sh
export ORACLE_HOME=/opt/l360/ucm/product/10132
export ORACLE_SID=orcl
export UCM_HOME=/opt/l360/ucm/product/ucm/server
export APACHE_HOME=/opt/l36 ...
In the shell script programing, in the cases of running command must be with the root role. but if you su to root, then must input password for root or you may write the root password in your script--it is not good solution.
How to do that?
1. login as root user:
2. type command:
visudo
3. un ...
Today, I met problem with the stellent UCM startup. Because I forgot the UCM DB user's password, so changed the password with the sys admin role. but the password changed cause the UCM server can NOT startup. it still use the original connection info to connect the DB.
Here is the solution:
1. M ...
The oracle UCM server include the 3 parts: Database/UCM server/Apache Server
start script:
1. DB:
export ORACLE_HOME=/opt/l360/ucm/product/10132
export ORACLE_SID=orcl
lsnrctl start
sqlplus sys/oracle as sysdba
startup
2. UCM
export UCM_HOME=/opt/l360/ucm/product/ucm/server
cd $ ...
Syntax
mailx [-B] [-d] [-e] [-F] [-H] [-i] [-I] [-n] [-N] [-U] [-R] [-t] [-v] [-V] [-~] [-b bcc] [-c cc] [-h number][ -f [file | +folder ] ] [ -T file ] [ -u user ] [-s subject] Recipients
-B
Do not buffer standard input or standard output.
-d
Turn on debugging output. (Neither partic ...
Today, I'm going to write small shell program to verify the demo servers if alive.
This is the script:
#!/bin/sh
echo "Check Servers status startup...."
MAIL_TITLE="OSL OO DEMO SERVERS Check Failed!"
VM03="oardc-vm03.cn.oracle.com"
FOUND=`ping $VM03 -c ...
Information Commands
Use the WLST information commands, listed in Table, to interrogate domains, servers, and variables, and provide configuration bean, runtime bean, and WLST-related information.
Table Information Commands for WLST Configuration
This command...
Weblogic provide script tool to create userConfigFile and userConfigKey, that encrypt the current user login and password, can be used by auto_deploy tools.
1. Set domain variable:
cd ${DOMAIN_HOME}/bin
source setDomainEnv.sh
2. Invoke WLST:
java weblogic.WLST
3. Genera ...
Following are the brief steps for installing SOA 11g
Install database 11g (11.1.0.7) including configuring TNS and listener
Create repository using Oracle RCU (Repository Creation Utility
Install WLS (weblogic Server) and create a middleware home
Download JDeveloper 11.1.1.2 and install. Specify ...