1. Create SSL Server Standard PSE in STRUST
2. Generate Local Certificate Authority with OpenSSL
openssl genrsa -des3 -out rootCA.key 2048
openssl req -x509 -new -nodes -key rootCA.key -sha256 -days 9999 -out rootCA.pem
3. Add the local root CA to ABAP server
4.Create a Certificate Signing Request, sign existing SSL cert in ABAP server with the local root CA and import the certificate response back into ABAP server
Create certificate response
openssl x509 -req -in server.csr -CA rootCA.pem -CAkey rootCA.key -CAcreateserial -out server.crt -days 999 -sha256 -extfile v3.txt
We're DONE!!!!
'IT > SAP' 카테고리의 다른 글
Helpful SAP Notes (0) | 2023.05.16 |
---|---|
Change SNOTE Interface (0) | 2023.05.12 |
STMS Script in OS (0) | 2022.03.28 |
Create systemctl service for SAPRouter (0) | 2021.11.26 |
Deploying the SCA Using Telnet (0) | 2021.02.19 |