To enable users to log into the IS Management Console, you create user accounts and assign them roles, which are sets of permissions. You can add individual users or import users in bulk. The following sections list out the various ways to configure your users.
...
Info | ||||
---|---|---|---|---|
Note the following before you use this feature:
|
...
Edit the
<IS_HOME>/repository/conf/identity/identity.xml
file, and setenable
totrue
in the following event listener:Code Block <EventListener type="org.wso2.carbon.user.core.listener.UserOperationEventListener" name="org.wso2.carbon.user.mgt.listeners.UserDeletionEventListener" orderId="98" enable="false"/> </EventListeners>
Edit the
<IS_HOME>/repository/conf/identity/identity.xml
file, and setenable
totrue
in the following event recorder:Code Block <UserDeleteEventRecorders> <UserDeleteEventRecorder name="org.wso2.carbon.user.mgt.recorder.DefaultUserDeletionEventRecorder" enable="false"> </UserDeleteEventRecorder> </UserDeleteEventRecorders>
This logs writes details related to user deletion in the CSV format to the
<IS_HOME>/repository/logs/delete-event.log
file in CSV format.Info title Note If necessary you can write user delete event details to a custom CSV file that you specify. To do this, add the following property within the
<UserDeleteEventRecorder>
element in the<IS_HOME>/repository/conf/identity/identity.xml
file, and be sure to specify the custom CSV file path.Code Block <Property name="path">${carbon.home}/repository/logs/delete-records.csv</Property>
...