SAP Cloud Connector: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
K →Update |
|||
| Zeile 60: | Zeile 60: | ||
== Update == | == Update == | ||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
rpm -U com.sap.scc-ui-<version>.rpm | |||
</syntaxhighlight> | </syntaxhighlight> | ||
Version vom 8. August 2025, 15:43 Uhr
Beschreibung
Der SAP Cloud Connector ist eine on-premise Komponente, die eine sichere Verbindung zwischen SAP Business Technology Platform (BTP) Cloud-Anwendungen und on-premise SAP-Systemen herstellt. Er fungiert als sicherer Tunnel und Reverse-Proxy für die Kommunikation zwischen Cloud und On-Premise Umgebungen.
Hauptfunktionen:
- Sichere Verbindung zwischen SAP BTP und On-Premise Systemen
- SSL/TLS verschlüsselte Kommunikation
- Access Control für Backend-Systeme
- High Availability Unterstützung (Master/Shadow)
Installation
Download
- URL: SAP Development Tools
- Navigation: SAP BTP → Cloud Connector
- Aktuelle Version: 2.18.x oder höher
Linux (SUSE/RHEL)
# Download und Installation
chmod +x sapcc-*.sh
sudo ./sapcc-*.sh
# Standard Installation Path: /opt/sap/scc
# Service wird automatisch als sccservice registriert
# Service aktivieren und starten
sudo systemctl enable sccservice
sudo systemctl start sccservice
# Status prüfen
sudo systemctl status sccservice
# Version verifizieren
sudo cat /opt/sap/scc/version.propertiesWindows
REM MSI Installer als Administrator ausführen
sapcc-*.msi
REM Service wird automatisch installiert und gestartet
REM Standardpfad: C:\SAP\scc
REM Service Status prüfen
sc query "SAP Cloud Connector"Initial Setup
# Admin UI aufrufen
# URL: https://localhost:8443
# Initial Credentials:
# User: Administrator
# Password: manage
# WICHTIG: Password sofort über "Change Password" ändern!Update
rpm -U com.sap.scc-ui-<version>.rpm