cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - You can Bookmark boards, posts or articles that you'd like to access again easily! X

How to disable all user logins except wcadmin?

gchampoux
1-Newbie

How to disable all user logins except wcadmin?

Is there a way to keep Windchill (9.1) up and running but only allow wcadmin to login?
In other words: Lock out all regular users.


Gerry

2 REPLIES 2
jessh
5-Regular Member
(To:gchampoux)

How about just editing the Apache config to require the admin user ala:

|Require user wcadmin|

and then restarting Apache?

That's one fairly simple thought.

You could instead add a servlet filter that rejects any request for
which getRemoteUser() returns a non-null user that's not in a desired
list/group. You could add a JMX and/or JSP toggle for this (complete
with cluster-wide multi-cast) to allow this to be toggled on the fly.

--
Jess Holle


We maintain an empty group which only has read permissions.


When we want to prevent any changes, we put a group of all non admin users (which weupdate when we addusers to the system)into that read-only group. Thus we can temporarily provide read-only access to all but a limited set of privileged users..


HTH,



Vincent



In Reply to Jess Holle:


How about just editing the Apache config to require the admin user ala:

|Require user wcadmin|

and then restarting Apache?

That's one fairly simple thought.

You could instead add a servlet filter that rejects any request for
which getRemoteUser() returns a non-null user that's not in a desired
list/group. You could add a JMX and/or JSP toggle for this (complete
with cluster-wide multi-cast) to allow this to be toggled on the fly.

--
Jess Holle

Top Tags