Creating a secure profile WebSphere

Soumen

Soumen

Reputable Poster
Does anyone know how to create a "secure profile" for WebSphere in iSeries? I have this command provided in the HTML for WebSphere guide but this does not specify how to create the profile as "secured". I am trying to install a BSSV server and need a secured profile in WebSphere created.

./manageprofiles -create -templatePath /QIBM/ProdData/WebSphere/AppServer/V85/ND/profileTemplates/default


Any help is appreciated.
 
I used this command and for now it seems to work...

$ cd /QIBM/ProdData/WebSphere/AppServer/V85/ND/bin

$ ./manageprofiles -create -templatePath /QIBM/ProdData/WebSphere/AppServer/V85/ND/profileTemplates/default -profileName <profile_name> -startingPort <port_number> -enableAdminSecurity true -adminUserName <user_name> -adminPassword <password>
 
Back
Top