Rajkumar
Rajkumar

Reputation: 345

Restricting the location from which WAS deploys the EAR

We have a Websphere Application server 6.1 running in a Linux machine. Many team members have admin access to the server. Often, incorrect EARs have been deployed due to manual error. We want to create a common shared location where the development team places the EAR. The deployment people must deploy the EAR only from that shared location.

Is there any way to enforce this in WAS 6.1?

Thanks in Advance,

Upvotes: 0

Views: 59

Answers (1)

user918176
user918176

Reputation: 1800

You could always

  1. Remove them access to WAS (WAS administrative account username/password)
  2. Create a wsadmin script for each EAR installation. The script installs only specific file from specific path.
  3. Create shell script that runs the wsadmin script from previous step, and provides that authentication
  4. Use standard POSIX file access rights so that the developers can run the scripts, but not see the passwords & other information from inside them.

This accomplishes what you require, but requires some scripting.

Upvotes: 1

Related Questions