SAP MaxDB: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
| (8 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt) | |||
| Zeile 13: | Zeile 13: | ||
xuser -U c clear | xuser -U c clear | ||
xuser -U c -u CONTROL,<passwort> -d SID -n Hostname -S INTERNAL | xuser -U c -u CONTROL,<passwort> -d SID -n Hostname -S INTERNAL | ||
dbmcli -d $SID -u superdba,<PW> db_clear | |||
</syntaxhighlight> | </syntaxhighlight> | ||
===== SUPERDBA ===== | ===== SUPERDBA ===== | ||
<syntaxhighlight lang="bash" line="1"> | <syntaxhighlight lang="bash" line="1"> | ||
| Zeile 21: | Zeile 22: | ||
xuser -U w clear | xuser -U w clear | ||
xuser -U w -u superdba,<PW> -d <SID> -n <HOST> -S INTERNAL | xuser -U w -u superdba,<PW> -d <SID> -n <HOST> -S INTERNAL | ||
dbmcli -d $SID -u superdba,<PW> db_clear | |||
</syntaxhighlight> | </syntaxhighlight> | ||
===== SAPSID ===== | ===== SAPSID ===== | ||
<syntaxhighlight lang="bash" line="1"> | <syntaxhighlight lang="bash" line="1"> | ||
| Zeile 29: | Zeile 31: | ||
xuser -U DEFAULT clear | xuser -U DEFAULT clear | ||
xuser -U DEFAULT -u SAP<SID>,<PW> -d <SID> -n <HOST> -S SAPR3 -t 0 | xuser -U DEFAULT -u SAP<SID>,<PW> -d <SID> -n <HOST> -S SAPR3 -t 0 | ||
dbmcli -d $SID -u superdba,<PW> db_clear | |||
startsap R3 | startsap R3 | ||
</syntaxhighlight> | |||
===== SAPSIDDB (Java oder ADS) ===== | |||
<syntaxhighlight lang="bash" line="1"> | |||
stopsap J2EE | |||
dbmcli -d <SID> -u superdba,<PW> -uSQL SAPADKDB,<PWALT> sql_execute ALTER PASSWORD <PWALT> TO <PWNEW> | |||
xuser -U DEFAULT clear | |||
xuser -U DEFAULT -u SAP<SID>DB,<PW> -d <SID> -n <HOST> -S SAPR3 -t 0 | |||
</syntaxhighlight> | |||
Im Configtool unter Connection Pools "Password" das neue Passwort eintragen | |||
<syntaxhighlight lang="bash" line="1"> | |||
cd /usr/sap/<SID>/J00/j2ee/configtool/ && ./configtool.sh | |||
</syntaxhighlight> | |||
<syntaxhighlight lang="bash" line="1"> | |||
startsap J2EE | |||
</syntaxhighlight> | </syntaxhighlight> | ||
Aktuelle Version vom 26. November 2025, 18:07 Uhr
Beschreibung
Download
Installation
Konfiguration
Kennwörter ändern
CONTROL
Hinweis: Wenn Monitoring-Checks "lila" sind, ist noch folgendes auszuführen: sudo /opt/nrpe/addxuser
dbmcli -d <SID> -u control,<passwort_alt> user_put control password=<passwort_neu>
xuser -U c clear
xuser -U c -u CONTROL,<passwort> -d SID -n Hostname -S INTERNAL
dbmcli -d $SID -u superdba,<PW> db_clearSUPERDBA
dbmcli -d <SID> -u control,<PW> user_put superdba password=<PW>
dbmcli -d <SID> -u control,<PW> load_systab -u superdba,<PW>
xuser -U w clear
xuser -U w -u superdba,<PW> -d <SID> -n <HOST> -S INTERNAL
dbmcli -d $SID -u superdba,<PW> db_clearSAPSID
stopsap R3
dbmcli -d <SID> -u superdba,<PW> -uSQL SAP<SID>,<PW> sql_execute ALTER PASSWORD <PWALT> TO <PWNEW>
xuser -U DEFAULT clear
xuser -U DEFAULT -u SAP<SID>,<PW> -d <SID> -n <HOST> -S SAPR3 -t 0
dbmcli -d $SID -u superdba,<PW> db_clear
startsap R3SAPSIDDB (Java oder ADS)
stopsap J2EE
dbmcli -d <SID> -u superdba,<PW> -uSQL SAPADKDB,<PWALT> sql_execute ALTER PASSWORD <PWALT> TO <PWNEW>
xuser -U DEFAULT clear
xuser -U DEFAULT -u SAP<SID>DB,<PW> -d <SID> -n <HOST> -S SAPR3 -t 0Im Configtool unter Connection Pools "Password" das neue Passwort eintragen
cd /usr/sap/<SID>/J00/j2ee/configtool/ && ./configtool.shstartsap J2EEUpdate
Test
Fehlerbehebung
Starten/Stoppen funktioniert nicht
Lösung 1
auszufüllen