Difference between revisions of "Training-high-availability"
From ThorstensHome
(→Definitions) |
(→SAP) |
||
Line 52: | Line 52: | ||
== SAP == | == SAP == | ||
− | === ASCS === | + | === Install === |
+ | |||
+ | ==== ASCS ==== | ||
./sapinst SAPINST_USE_HOSTNAME sapna1as | ./sapinst SAPINST_USE_HOSTNAME sapna1as | ||
Choose Netweaver -> Application Server ABAP -> MaxDB -> High Availability -> ASCS | Choose Netweaver -> Application Server ABAP -> MaxDB -> High Availability -> ASCS | ||
− | === DB === | + | ==== DB ==== |
./sapinst SAPINST_USE_HOSTNAME sapna1db | ./sapinst SAPINST_USE_HOSTNAME sapna1db | ||
Choose Netweaver -> Application Server ABAP -> MaxDB -> High Availability -> db instance | Choose Netweaver -> Application Server ABAP -> MaxDB -> High Availability -> db instance | ||
− | === CI === | + | ==== CI ==== |
./sapinst SAPINST_USE_HOSTNAME sapna1ci | ./sapinst SAPINST_USE_HOSTNAME sapna1ci | ||
+ | |||
+ | === Start === | ||
+ | |||
+ | startsap sapna1as | ||
+ | startsap sapna1ci | ||
= Pitfalls = | = Pitfalls = | ||
* forgot to have luns before installing | * forgot to have luns before installing | ||
* forgot to use SAPINST_USE_HOSTNAME => had to uninstall ASCS | * forgot to use SAPINST_USE_HOSTNAME => had to uninstall ASCS |
Revision as of 13:18, 29 April 2009
Contents |
Autoyast
install=http://... autoyast=http://...
Migration
A migration in the sense of SAP is a change of OS or DB, but not an upgrade or update.
URLs
IPs
10.31.19.101 sapna1ci 10.31.19.102 sapna1db
Definitions
- SID is NA1
- user na1adm id 2000, group 2000
- user sdb 2001, group 2001
- user sqdna1 id 2002
- ascs gets instance number 00
- we use IBM Java 1.4.2
Decisions
- We use a simple stack, that means, if a server goes down, the complete stack switches over to the other node, accepting downtime.
Progress
mdadm
mdadm.conf:
DEVICE /dev/disk/by-id/scsi-360a98000486e5337524a4f6a4e43542d-part2 ARRAY /dev/md0 level=raid0 num-devices=1 UUID=357d721b:86058e8c:8d746cf9:a620ae3c
mdadm --assemble --config /clusterconf/NA1/mdadm.conf /dev/md0
Start lvm
vgscan vgdisplay lvdisplay vgchange -a y sapvg
Mount the vgs
mount /dev/sapvg/usrsap /usr/sap mount /dev/sapvg/sapdb /sapdb mount /dev/sapvg/sapmnt /sapmnt
Java
Install java
yast -i java-1.4.2-ibm
SAP
Install
ASCS
./sapinst SAPINST_USE_HOSTNAME sapna1as
Choose Netweaver -> Application Server ABAP -> MaxDB -> High Availability -> ASCS
DB
./sapinst SAPINST_USE_HOSTNAME sapna1db
Choose Netweaver -> Application Server ABAP -> MaxDB -> High Availability -> db instance
CI
./sapinst SAPINST_USE_HOSTNAME sapna1ci
Start
startsap sapna1as startsap sapna1ci
Pitfalls
- forgot to have luns before installing
- forgot to use SAPINST_USE_HOSTNAME => had to uninstall ASCS