Adobe Document Server: Unterschied zwischen den Versionen
KKeine Bearbeitungszusammenfassung |
K →Test |
||
| (3 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt) | |||
| Zeile 1: | Zeile 1: | ||
=== Beschreibung === | === Beschreibung === | ||
Adobe Document Services (ADS) als eigenständiger AS Java-Stack (NetWeaver 7.50). | |||
=== Download === | === Download === | ||
ADS-Patches (SCA) im SAP Software Center: | |||
https://me.sap.com/softwarecenter/support/index | |||
Beispiel: <code>ADOBE DOCUMENT SERVICES 7.50 ADSSAP27P_2-80000623.SCA</code> | |||
=== Installation === | === Installation === | ||
==== Lizenz einspielen (Offline-Tool, bevorzugt) ==== | |||
Tool liegt unter <code>/usr/sap/<SID>/J00/j2ee/configtool/licenses/</code> (im Unterverzeichnis ''licenses'', nicht direkt im configtool-Ordner!). | |||
Voraussetzung: Message Server (SCS) muss laufen. | |||
cd /usr/sap/<SID>/J00/j2ee/configtool/licenses | |||
./offlinelicensing.sh -show | |||
Ausgabe: '''Hardware Key''' + '''SW Product''' der vorhandenen Lizenz → damit permanente Lizenz im License Key Center beantragen. | |||
./offlinelicensing.sh -install /tmp/key.txt | |||
./offlinelicensing.sh -show | |||
Ergebnis prüfen: <code>Validity: valid</code> | |||
Übergangsweise Templizenz (nur 1x pro System/Produkt möglich): | |||
./offlinelicensing.sh -temppossible J2EE-Engine | |||
./offlinelicensing.sh -temp J2EE-Engine | |||
Weitere Optionen: <code>-info</code>, <code>-version</code>, <code>-delete</code> (siehe <code>offlinelicensing_usage.txt</code>) | |||
==== Lizenz einspielen via Telnet (Fallback) ==== | |||
Funktioniert auch im Safe-Mode (jstart RED, "No valid license found"), da jstart in diesem Zustand weiterläuft. | |||
telnet localhost 50008 | |||
Login als J2EE-Admin-User, dann: | |||
jump 0 | |||
add licensing | |||
install_license -file /tmp/key.txt | |||
LIST_LICENSES | |||
Kommt <code>Can't find command 'install_license'</code>: vorher <code>jump 0</code> ausführen (SAP Hinweis 2003564). | |||
==== Neustart ==== | |||
sapcontrol -nr 00 -function RestartSystem | |||
=== Konfiguration === | === Konfiguration === | ||
''(noch zu ergänzen)'' | |||
=== Update === | === Update === | ||
Aktuellen Patch herunterladen https://me.sap.com/softwarecenter/support/index | Aktuellen Patch herunterladen: https://me.sap.com/softwarecenter/support/index | ||
ADOBE DOCUMENT SERVICES 7.50 ADSSAP27P_2-80000623.SCA | |||
SCA Archiv nach /usr/sap/ | #ADOBE DOCUMENT SERVICES 7.50 ADSSAP27P_2-80000623.SCA | ||
telnet localhost 50008 | #SCA Archiv nach /usr/sap/<SID>/SUM/ hochladen | ||
add deploy | #Telnet-Konsole öffnen und als J2EE-Admin einloggen | ||
deploy /usr/sap/ | |||
telnet localhost 50008 | |||
VERSION | |||
add deploy | |||
deploy /usr/sap/<SID>/SUM/ version_rule=all | |||
Danach Patchlevel mit <code>VERSION</code> kontrollieren. | |||
=== Test === | === Test === | ||
Prozessstatus (jstart muss GREEN / Running sein): | |||
sapcontrol -nr 00 -function GetProcessList | |||
sapcontrol -nr 01 -function GetProcessList | |||
Lizenzstatus: | |||
cd /usr/sap/<SID>/J00/j2ee/configtool/licenses | |||
./offlinelicensing.sh -show | |||
Funktionstest ADS im anbindenden ABAP-System: Reports <code>FP_CHECK_DESTINATION_SERVICE</code> und <code>FP_TEST_00</code>. | |||
=== Codeschnipsel === | === Codeschnipsel === | ||
Status prüfen: | |||
sapcontrol -nr 00 -function GetProcessList | |||
Restart Java-Stack: | |||
sapcontrol -nr 00 -function RestartSystem | |||
Lizenzprüfung in einer Zeile: | |||
cd /usr/sap/ADK/J00/j2ee/configtool/licenses && ./offlinelicensing.sh -show | |||
=== Nützliche Links === | === Nützliche Links === | ||
*SAP Hinweis 2003564 – License installation using Telnet for AS Java: https://service.sap.com/sap/support/notes/2003564 | |||
*SAP Hinweis 2444530 – How to import an AS Java license when NWA is not available: https://service.sap.com/sap/support/notes/2444530 | |||
*SAP Hinweis 3081575 – How to create SAP JAVA/J2EE license keys: https://service.sap.com/sap/support/notes/3081575 | |||
*SAP Hinweis 2523388 – saplikey nicht für reine Java-Systeme: https://service.sap.com/sap/support/notes/2523388 | |||
*License Key Center: https://support.sap.com/licensekey | |||
*Software Center: https://me.sap.com/softwarecenter | |||
Aktuelle Version vom 3. September 2026, 11:44 Uhr
Beschreibung
Adobe Document Services (ADS) als eigenständiger AS Java-Stack (NetWeaver 7.50).
Download
ADS-Patches (SCA) im SAP Software Center:
https://me.sap.com/softwarecenter/support/index
Beispiel: ADOBE DOCUMENT SERVICES 7.50 ADSSAP27P_2-80000623.SCA
Installation
Lizenz einspielen (Offline-Tool, bevorzugt)
Tool liegt unter /usr/sap/<SID>/J00/j2ee/configtool/licenses/ (im Unterverzeichnis licenses, nicht direkt im configtool-Ordner!).
Voraussetzung: Message Server (SCS) muss laufen.
cd /usr/sap/<SID>/J00/j2ee/configtool/licenses ./offlinelicensing.sh -show
Ausgabe: Hardware Key + SW Product der vorhandenen Lizenz → damit permanente Lizenz im License Key Center beantragen.
./offlinelicensing.sh -install /tmp/key.txt ./offlinelicensing.sh -show
Ergebnis prüfen: Validity: valid
Übergangsweise Templizenz (nur 1x pro System/Produkt möglich):
./offlinelicensing.sh -temppossible J2EE-Engine ./offlinelicensing.sh -temp J2EE-Engine
Weitere Optionen: -info, -version, -delete (siehe offlinelicensing_usage.txt)
Lizenz einspielen via Telnet (Fallback)
Funktioniert auch im Safe-Mode (jstart RED, "No valid license found"), da jstart in diesem Zustand weiterläuft.
telnet localhost 50008
Login als J2EE-Admin-User, dann:
jump 0 add licensing install_license -file /tmp/key.txt LIST_LICENSES
Kommt Can't find command 'install_license': vorher jump 0 ausführen (SAP Hinweis 2003564).
Neustart
sapcontrol -nr 00 -function RestartSystem
Konfiguration
(noch zu ergänzen)
Update
Aktuellen Patch herunterladen: https://me.sap.com/softwarecenter/support/index
- ADOBE DOCUMENT SERVICES 7.50 ADSSAP27P_2-80000623.SCA
- SCA Archiv nach /usr/sap/<SID>/SUM/ hochladen
- Telnet-Konsole öffnen und als J2EE-Admin einloggen
telnet localhost 50008 VERSION add deploy deploy /usr/sap/<SID>/SUM/ version_rule=all
Danach Patchlevel mit VERSION kontrollieren.
Test
Prozessstatus (jstart muss GREEN / Running sein):
sapcontrol -nr 00 -function GetProcessList sapcontrol -nr 01 -function GetProcessList
Lizenzstatus:
cd /usr/sap/<SID>/J00/j2ee/configtool/licenses ./offlinelicensing.sh -show
Funktionstest ADS im anbindenden ABAP-System: Reports FP_CHECK_DESTINATION_SERVICE und FP_TEST_00.
Codeschnipsel
Status prüfen:
sapcontrol -nr 00 -function GetProcessList
Restart Java-Stack:
sapcontrol -nr 00 -function RestartSystem
Lizenzprüfung in einer Zeile:
cd /usr/sap/ADK/J00/j2ee/configtool/licenses && ./offlinelicensing.sh -show
Nützliche Links
- SAP Hinweis 2003564 – License installation using Telnet for AS Java: https://service.sap.com/sap/support/notes/2003564
- SAP Hinweis 2444530 – How to import an AS Java license when NWA is not available: https://service.sap.com/sap/support/notes/2444530
- SAP Hinweis 3081575 – How to create SAP JAVA/J2EE license keys: https://service.sap.com/sap/support/notes/3081575
- SAP Hinweis 2523388 – saplikey nicht für reine Java-Systeme: https://service.sap.com/sap/support/notes/2523388
- License Key Center: https://support.sap.com/licensekey
- Software Center: https://me.sap.com/softwarecenter