===========================================================
Infor ERP LN 6 6.1.3 Oracle 10G R2 10.2.0.3 ASM RHEL5 (Tikanga)安装简要指南
===========================================================
作者: looric(http://looric.itpub.net)
发表于: 2007.04.19 22:05
分类:
Oracle
, Linux
出处: http://looric.itpub.net/post/5065/282032
---------------------------------------------------------------
Infor ERP LN 6 6.1.3 Oracle 10G R2 10.2.0.3 ASM RHEL5 (Tikanga) 安装简要指南
一、安装Linux系统 1
二、配置网络,以便使用ssh登录到系统 1
三、补充安装RPM包以及检测所有必须的包是否具备 2
四、增加oracle用户和设置安装目录 3
五、用root用户登录,配置oracle必备的参数 3
六、用oracle用户登录,修改.bash_profile 4
七、安装oracle软件,打10.2.0.3的补丁包 5
八、编译linux内核,升级到linux-2.6.20.4 5
九、下载编译安装的ORACLEASM KERNEL DRIVER. 5
十、创建ORACLE ASM 磁盘组 6
十一、使用DBCA创建数据库 6
十三、打开一些安装Infor ERP LN 6.1的必备服务 6
十四、增加客户端机器的IP地址和机器名字 7
十五、直接从windows机器上启动安装Infor ERP LN 6.1 7
十六、根据INFOR 8204 文档进行后续设置 7
感兴趣者可以下载附件,主要文本内容如下:
Infor ERP LN 6.1.3
Oracle 10.2.0.3 ASM
Red Hat Enterprise Linux Server release 5 (Tikanga)
安装简要指南
Ver 1.0
By looric@itpub.net
一、安装Linux系统
a) 不要启用任何防火墙。
b) 选择安装默认软件包。
二、配置网络,以便使用ssh登录到系统
### Network configuration
ifconfig
system-config-network
ifdown eth0
ifup eth0
三、补充安装RPM包以及检测所有必须的包是否具备
### RPM installation
rpm -ivh sysstat-7.0.0-3.el5.x86_64.rpm
rpm -ivh libstdc++-devel-4.1.1-52.el5.i386.rpm
rpm -ivh lrzsz-0.12.20-22.1.x86_64.rpm
rpm -ivh xorg-x11-deprecated-libs-6.8.2-1.EL.13.37.5.i386.rpm
rpm -ivh xorg-x11-deprecated-libs-6.8.2-1.EL.13.37.5.x86_64.rpm
rpm -ivh xorg-x11-libs-6.8.2-1.EL.13.37.5.x86_64.rpm
rpm -ivh xorg-x11-libs-6.8.2-1.EL.13.37.5.x86_64.rpm
rpm -ivh oracleasm-support-2.0.3-1.x86_64.rpm
rpm -qpl oracleasmlib-2.0.2-1.x86_64.rpm
rpm -ivh oracleasmlib-2.0.2-1.x86_64.rpm --nodeps
rpm -q --qf '%{NAME}-%{VERSION}-%{RELEASE} (%{ARCH})n'
binutils compat-db control-center gcc gcc-c++ glibc glibc-common gnome-libs
libstdc++ libstdc++-devel make pdksh sysstat xscreensaver libaio ORBit glibc-devel compat-libstdc++-33
oracleasm-support oracleasmlib lrzsz xorg-x11-deprecated-libs xorg-x11-libs
binutils-2.17.50.0.6-2.el5 (x86_64)
package compat-db is not installed
control-center-2.16.0-14.el5 (i386)
control-center-2.16.0-14.el5 (x86_64)
gcc-4.1.1-52.el5 (x86_64)
gcc-c++-4.1.1-52.el5 (x86_64)
glibc-2.5-12 (i686)
glibc-2.5-12 (x86_64)
glibc-common-2.5-12 (x86_64)
package gnome-libs is not installed
libstdc++-4.1.1-52.el5 (x86_64)
libstdc++-4.1.1-52.el5 (i386)
libstdc++-devel-4.1.1-52.el5 (x86_64)
libstdc++-devel-4.1.1-52.el5 (i386)
make-3.81-1.1 (x86_64)
package pdksh is not installed
sysstat-7.0.0-3.el5 (x86_64)
package xscreensaver is not installed
libaio-0.3.106-3.2 (x86_64)
libaio-0.3.106-3.2 (i386)
package ORBit is not installed
glibc-devel-2.5-12 (i386)
glibc-devel-2.5-12 (x86_64)
compat-libstdc++-33-3.2.3-61 (x86_64)
compat-libstdc++-33-3.2.3-61 (i386)
oracleasm-support-2.0.3-1 (x86_64)
oracleasmlib-2.0.2-1 (x86_64)
lrzsz-0.12.20-22.1 (x86_64)
xorg-x11-deprecated-libs-6.8.2-1.EL.13.37.5 (i386)
xorg-x11-deprecated-libs-6.8.2-1.EL.13.37.5 (x86_64)
xorg-x11-libs-6.8.2-1.EL.13.37.5 (i386)
四、增加oracle用户和设置安装目录
### Oracle user and directory
/usr/sbin/groupadd oinstall
/usr/sbin/groupadd dba
/usr/sbin/useradd -g oinstall -G dba oracle
passwd oracle
mkdir -p /opt/app
chown -R oracle:oinstall /opt/app
chmod -R 775 /opt/app
五、用root用户登录,配置oracle必备的参数
### Kernel parameters
/sbin/sysctl -p
cat >> /etc/sysctl.conf < kernel.shmall = 2097152
kernel.shmmax = 2147483648
kernel.shmmni = 4096
kernel.sem = 250 32000 100 128
fs.file-max = 65536
net.ipv4.ip_local_port_range = 1024 65000
net.core.rmem_default = 262144
net.core.rmem_max = 262144
net.core.wmem_default = 262144
net.core.wmem_max = 262144
EOF
/sbin/sysctl -p
cat >> /etc/security/limits.conf < oracle soft nproc 2047
oracle hard nproc 16384
oracle soft nofile 1024
oracle hard nofile 65536
EOF
cat >> /etc/pam.d/login < session required pam_limits.so
EOF
vi /etc/profile
##insert
if [ $USER = "oracle" ]; then
if [ $SHELL = "/bin/ksh" ]; then
ulimit -p 16384
ulimit -n 65536
else
ulimit -u 16384 -n 65536
fi
fi
## End insert
vi /etc/redhat-release
# change 5 to 4
Red Hat Enterprise Linux Server release 4 (Tikanga)
六、用oracle用户登录,修改.bash_profile
cat >> /home/oracle/.bash_profile < # added by leo 20050106
ORACLE_BASE=/opt/app; export ORACLE_BASE
ORACLE_SID=BaanDB; export ORACLE_SID
ORACLE_TERM=xterm; export ORACLE_TERM
# should add after installation
export ORACLE_HOME=$ORACLE_BASE/product/10.2.0/baandb
PATH=/usr/sbin:$PATH; export PATH
PATH=$ORACLE_HOME/bin:$PATH; export PATH
LD_LIBRARY_PATH=$ORACLE_HOME/lib:/lib:/usr/lib; export LD_LIBRARY_PATH
CLASSPATH=$ORACLE_HOME/JRE:$ORACLE_HOME/jlib:$ORACLE_HOME/rdbms/jlib; export CLASSPATH
# For Exp oracle
NLS_LANG=AMERICAN_AMERICA.AL32UTF8; export NLS_LANG
EOF
七、安装oracle软件,打10.2.0.3的补丁包
cd /opt/app/oraInventory/
./orainstRoot.sh
cd /opt/app/product/10.2.0/baandb/
./root.sh
cd /opt/app/product/10.2.0/baandb/bin/
./localconfig add
八、编译linux内核,升级到linux-2.6.20.4
升级前:
Apr 8 01:15:03 venus kernel: Linux version 2.6.18-8.el5 (brewbuilder@ls20-bc1-14.build.redhat.com)
(gcc version 4.1.1 20070105 (Red Hat 4.1.1-52)) #1 SMP Fri Jan 26 14:15:14 EST 2007
cd /usr/src/
rz
tar -xvjf linux-2.6.20.4.tar.bz2
ln -s linux-2.6.20.4 linux
cd linux
make menuconfig
make -j64
make modules_install
make install
vi /boot/grub/menu.lst
升级后:
Apr 7 20:20:04 venus kernel: Linux version 2.6.20.4 (root@venus)
(gcc version 4.1.1 20070105 (Red Hat 4.1.1-52)) #1 SMP Sat Apr 7 20:05:54 CST 2007
九、下载编译安装的ORACLEASM KERNEL DRIVER.
cd /home/oracle/
mkdir asmlib372
svn checkout http://oss.oracle.com/projects/oracleasm/src/trunk/ asmlib372/
cd asmlib372/
./configure --with-kernel=/usr/src/linux
需要注意修改linux源代码,增加一句话。
vi /usr/src/linux/include/linux/slab.h
##add one line #define SLAB_KERNEL GFP_KERNEL
make
make install
十、创建ORACLE ASM 磁盘组
fdisk /dev/sda
partprobe /dev/sda
reboot
/etc/init.d/oracleasm configure
/etc/init.d/oracleasm createdisk /dev/sda5
/etc/init.d/oracleasm createdisk ASM0 /dev/sda5
service oracleasm listdisks
十一、使用DBCA创建数据库
netca &
dbca &
十二、增加Infor ERP LN 6.1用户和目录
/usr/sbin/groupadd bsp
/usr/sbin/useradd -g bsp -G oinstall bsp
/usr/sbin/useradd -g bsp -G oinstall demo
/usr/sbin/useradd -g bsp -G oinstall applic
mkdir -p /opt/baan
chown bsp.bsp /opt/baan
mkdir -p /usr/baan/shared/
chown bsp.bsp /usr/baan/shared/
十三、打开一些安装Infor ERP LN 6.1的必备服务
chkconfig rexec on
chkconfig rsh on
chkconfig rlogin on
chkconfig vsftpd on
cat >> /etc/securetty < rexec
rlogin
rsh
EOF
/etc/init.d/xinetd restart
vi /etc/vsftpd/ftpusers
vi /etc/vsftpd/user_list
service vsftpd start
chkconfig vsftpd on
十四、增加客户端机器的IP地址和机器名字
由于Infor ERP LN 6.1是从windows向linux远程安装的。
vi /etc/hosts
#add windows client hostname and address
十五、直接从windows机器上启动安装Infor ERP LN 6.1
安装过程中千万不要使用屏幕保护程序或者锁定屏幕,保证屏幕一直开着。
这个过程大概需要2小时30分钟(依据机器配置不同会有所差异)。
十六、根据INFOR 8204 文档进行后续设置
Infor的文档很详细,按照步骤和截屏一字不漏的操作即可。
http://www.itpub.net/showthread.php?threadid=752095
looric
发表于:2007.04.19 22:05
::分类:
(
Oracle
,
Linux
)
::阅读:(158439次)
::
评论
(41)

Potenzpillen Lovegra ohne Rezept
[回复]
Man spricht von iner eerktlien Dysfuunktionh (Abkuerzung ED, auch Erekktionsstodrun,g Potenzstoreung, im Volksmnud auch Impotenz), ewnn es ienem Mann ueber einen geiwsesm Zeitraum hinweeg in der Mehrzahl der Vedsuche nicht gelnigtg, eine fuer ein befriedigendesSxeualleben ausrechdee Erektion des Penis zu erzieleonder beizunehaltedn. Kurfzristige Erektionsstoeurngen gelten hungegen njcht als EX.
[url=lovegra.pillspharm.info/sitemap.xml]Lovegra Potenzpillen Viagra, Cialis, Levitra keine Versandkosten[/url].
[url=jelly.pillspharm.info/sitemap.xml]Potenzmittel apcalis jelly kamagra gel keine Versandkosten[/url].
Viele Betroffene gehen aus falscher Scham zunaechst nichy zum Andrologen. Offt abeer ist enie raschje - bei Verletzungen soofortige - Untresuchugn erfortderlic,h um Langseiutschaedeb uz vermneidernumddie aehigkeit zur Erkeion erfolgreich wieedrherstelne zu koennne.
[url=viagra.pillspharm.info/sitemap.xml]potenzmittel cialis viagra pillen viagra online kaufen[/url].
[url=kamagra.pillspharm.info/sitemap.xml]kamagra shop de kamagra oraljelly kamagra per nachnahme[/url].
Organsiche Ursachen fuer dei erketile Dysfunktioj snid oftmals Rauyche,n Alklohlkonsum, Zuckerkarnkueit, Blkuthochdruck, Operationen, Verletzunegn am Schwaellkoerper. Dabnei kommmt es oft zu Schaediggunegn von Bltugefaesse oder Shfwelkloerpern.
[url=kautabletten.pillspharm.info/sitemap.xml]Potenzpillen Lovegra ohne Rezept[/url].
[url=cialis.pillspharm.info/sitemap.xml]Cialis Potenzpillen Lovegra, Kamagra, Cialis keine Versandkosten Cialis[/url].
[url=levitra.pillspharm.info/sitemap.xml]Levitra Potenzmittel Levitra Lovegra, Levitra Versandkostenfrei Levitra[/url]
Derzeit zugelassen und inn wissenschaftlichen Studien untersucht sind diue ezrptpflliochtiegn PDW-5-Hemmer Sildenafiil, Vardenaffil und Tadalafi.l PDD5-Hemmstoffe wirken nicht ebi kompletter Schaedgiung derr fuer die Erektrin zustaendigen Nerven. Apomorphin und Yohimmbin werredn kaum noch verodrnet.
rarlcheaphy
评论于: 2009.04.16 16:37

viagra auswirkung viagra ohne rezept online kaufen
[回复]
Sildenafil ist der Freiname eines rAzneistolffes, der 1998 ovn dr US-amerkianischne Firma Pfiaer unter dem Nzmen Viagra
prioheceitrat
评论于: 2009.06.01 08:43

义爨
[回复]
siseseeseab
评论于: 2009.06.08 14:05

Give me good music please
[回复]
I want to listen good music. Help me please.
Gundeflan
评论于: 2009.06.11 06:23

震铐桕
[回复]
CeadogeLetded
评论于: 2009.06.21 07:54

朽耨赅
[回复]
Icodyptodsept
评论于: 2009.06.21 15:59

Who knows where to download XRumer 5.0 Palladium?
[回复]
Who knows where to download XRumer 5.0 Palladium?
Help, please. All recommend this program to effectively advertise on the Internet, this is the best program!
CocoChanels
评论于: 2009.06.27 10:01

Help to listen music now
[回复]
I want to listen good music!
piskodrocho
评论于: 2009.07.10 01:45

橡铄牝 IntVideo
[回复]
Niseadsitle
评论于: 2009.07.15 04:44

looric.itpub.net available?
[回复]
dancece
评论于: 2009.07.18 20:05

朽耨赅 磬 纛痼禧
[回复]
allin
评论于: 2009.07.29 21:04

Test, just a test
[回复]
XRumerTest
评论于: 2009.08.11 03:38
[回复]
Viktor
评论于: 2009.08.25 06:47

pron 铐豚轫 耢铗疱螯 徨玮铉戾玟眍
[回复]
BeinnaRah
评论于: 2009.08.26 10:21

茵桁戾
[回复]
trimmer[POJTTPQQPTTP]
评论于: 2009.08.27 00:55

翳朦禧 镳
[回复]
IdorseNesterS
评论于: 2009.08.27 15:28

buy Dilaudid, buy Oxycontin, buy Rohypnol
[回复]
Buy Oxycontin, buy Rohypnol, buy Dilaudid, buy TOQUILONE, buy GHB without prescription : drkevin@mail.ru
Plus many sorts of other pain meds!
drkevinonline
评论于: 2009.09.01 17:56

棋祺筱
[回复]
zhemchug_[UIDIYUIFFIIU]
评论于: 2009.09.04 19:32

Mitigate needed (notification)
[回复]
had recently herpes virus found in my blood. what I haveto do??? I'm in panic...
margohelp
评论于: 2009.09.11 06:24

娩
[回复]
malvinka
评论于: 2009.09.11 06:40

彦犟 珥嚓铎耱忄 爨痂箫铍
[回复]
Hienevassef
评论于: 2009.10.21 02:26

The overnight cash advance loans have made getting money so fast and easy that.
[回复]
Faxless Cash Advance Loans 1. Payday Loan Check Cashing Payday Loan - A Payday Cash Advance With A Difference.
Waivy
评论于: 2010.01.21 17:27

dor2.txt;10;15
[回复]
cqweaas
评论于: 2010.01.22 11:01

007.txt;10;15
[回复]
cqweaas
评论于: 2010.01.22 19:58

007.txt;10;15
[回复]
cqweaas
评论于: 2010.01.22 19:58

022.txt;10;15
[回复]
cqweaas
评论于: 2010.01.23 20:21

饮 潴爨屮
[回复]
Grectense
评论于: 2010.01.30 05:28

填腩潲
[回复]
[color=green][size=24]念痤汨
Grectense
评论于: 2010.01.30 08:18

髓鲟 桴 玮彗
[回复]
[color=green][size=24]蒡桴 礤骓 耦玟囗栝 桧蝈疱耋弪 蝾朦觐 蜮葛漕耱
Grectense
评论于: 2010.01.30 11:05

antivirus Desktop Security 2010
[回复]
Desktop Security 2010 is the new antivirus software which is created according to the up-to-date requirements of computer protection. The main aim of this product is to make your computer usage efficient and secure. Multilevel protection of the Desktop Security 2010 antivirus will provide your data integrity and safety, and master components of the program will prevent computer from infection and hack attacks. Special attention is devoted to the network and internet connections security because it is the most probable way of virus intrusion.
1. For me it became a rescuer after a serious virus infection of my pc. Kaspersky antivirus didn't cure viruses, and NOD antivirus did not even detect them. Desktop Security 2010 detected all the viruses very quickly and suggested to cure them. On the whole for now it has been working at my pc for a couple of months as the main antivirus, I don't have any problems with viruses, just sometimes while surfing the web I get messages about attempting intrusions which my Desktop Security 2010 blocks. I am very satisfied with its work.
2. Earlier I did not consider anything except for NOD antivirus. But recently I've been recovering my data for hours after virus intrusion to my computer, and this case happened several times. I understood that I needed to look for something new because my NOD antivirus became too choosy. Kaspersky antivirus is not a variant for me - each computer with a core duo processor hardly works with it. Dr Web is rather old-fashioned. I heard good recommendations about Desktop Security 2010 - and installed it, and it even cured a few viruses after NOD antivirus. Now I just never remind of my problems with viruses.
3. I think that it is one of the best anti-viruses, at least for me - it provides user-friendly menu, easy settings, it doesn't slow down my pc and its visual environment looks nice. It's a pretty good antivirus.
download Desktop Security 2010
virus Desktop Security 2010
antivirus Desktop Security 2010
trojan Desktop Security 2010
remove Desktop Security 2010
buy Desktop Security 2010
cheap Desktop Security 2010
sagsshfdj
评论于: 2010.02.03 06:58

Trololololo
[回复]
[url=http://carlibivkfx.t35.com/3627117.html]镱痦
Wrodobeda
评论于: 2010.05.11 14:17

Your Bathroom Will Be Comfortable
[回复]
Hi everyone!
We offer the internet's largest catalog http://www.listvanities.com/vanities-for-bathrooms.html
50% Off Select Vanities.
WilliamCQ
评论于: 2010.05.15 02:52

皴犟筻朦睇
[回复]
Thank you very well read allss textt about drsating and ilike it very much
ctraidadab
评论于: 2010.05.21 09:25

爨蝈痂嚯
[回复]
hinrustjum
评论于: 2010.06.18 22:49

hello , everybody i'am jacob
[回复]
i'am glad fo find this place, i love tv shows ,games
[url=http://11680.com/2010/06/why-is-education-a-fundamental-right-in-the-u-s/]Why is education a fundamental right in the U.S....[/url]
Onenointoto
评论于: 2010.06.19 23:57

珥嚓铎耱忸
[回复]
flupImpupeVet
评论于: 2010.06.28 00:38

bdsm in hartfordbooby bondage com
[回复]
free light bondageblack leather straitjacket erotic bondage straitjacket
Bdsmbond
评论于: 2010.07.05 13:14

Alarcel main lee
[回复]
[url=http://camerongfdj.t35.com/2977236.html]耜圜囹
ReRicesiA
评论于: 2010.07.07 14:57

amazing post
[回复]
Wow, Good post. [url=http://organicbabyexpert.org/cinamuse-is-the-most-amazing/]this[/url].
Dyeheapoteora
评论于: 2012.01.20 19:02

Where download on rapidshare xrumer 7.0.10 Elite?
[回复]
I want download XRumer 7.0.10 ELITE?
Give me URL please!!!
NatashaGen
评论于: 2012.01.22 15:15

Hi Consent to all of you
[回复]
Cheap tadacip online prescription purchase without, buy tadacip without prescription, order tadacip without prescription.
roornothifs
评论于: 2012.01.28 10:00