Enabling Global Security from wasadmin

Enabling Global Security through CUI(wsadmin) you can follow below steps

isuue wsadmin command from /bin

issue below command in the wsadmin prompt

wsadmin>set security [$AdminConfig list Security]
wsadmin>$AdminConfig modify $security [list [list enabled true]]
wsadmin>$AdminConfig save

Steps in SSL communication...

Steps for SSL communication when a server authentication is requested

Step 1.The client request for a secure page by using HTTPS.
Step 2.The server sends its public key and certificate to the client
Step 3.The client checks that the certificate was issued by a trusted party (trusted Certificate Authority) the certificate expiry and that the certificate is related to the contacted site.
Step 4.The client uses the public key to encrypt a random symmetric encryption key and sends it to the server, along with the encrypted URL required and other encrypted HTTP data.
Step 5.The server decrypts the symmetric encryption key using its private key and uses the symmetric key to decrypt the URL and HTTP data.
Step 6.The server sends back the requested HTML document and HTTP data that are encrypted with the symmetric key.
Step 7.The client decrypts the HTTP data and HTML document using the symmetric key and displays the information.

WebSphere Tips & Tricks...

Disabling Global Security through command

Locate your profile_root/bin directory and run the wsadmin -conntype NONE command. At the wsadmin prompt, type 'securityoff' and then type 'exit' to return to a command prompt. Restart the server with security disabled to check any incorrect settings through the administrative console.