There are 46 posts and 1


NAVIGATION

11
Jul

SSL Zertifikate für BEA-Weblogic erstellen

Category: Weblogic, Solaris, Apache, Linux | Leave a Comment

Key der CA erstellen:
openssl genrsa -des3 -out CA.key 768
Zertificat für CA erstellen:
openssl req -new -key CA.key -x509 -days 1095 -out CA.crt
Key für Server erstellen:
openssl genrsa -out <server>.key
Zertifikatsrequest für Server erstellen:
openssl req -new -key <server>.key -out <server>.csr
Zertifikat des Servers mit dem Zeritifikat der CA signieren:
openssl x509 -req -days 365 -in <server>.csr -CA CA.crt -CAkey CA.key -CAcreateserial […]

11
Jul

Solaris V240 configure SC for SSH

Category: Solaris | Leave a Comment

1. Update auf Firmware 1.6.2
2. /usr/platform/`uname -i`/sbin/scadm set if_connection ssh
3. /usr/platform/`uname -i`/sbin/scadm resetrsc
Wait a minute, so the sc can come up again and then try ssh to connect to the sc.

11
Jul

Rsync - Verzeichnis Backup

Category: Solaris, Linux | Leave a Comment

rsync -uvr –delete /sorce/ /target/.

11
Jul

find - suchen nach Inhalt

Category: Solaris, Linux | Leave a Comment

/find * | xargs grep ‘hallo’
oder deutlich eleganter:

¬†find . -type f | xargs grep ‘hallo’