Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Current »

Adding a Portal Administrator

The default uPortal install puts the admin user in the Portal Administrators group. This provides the admin user with the ability to access Groups Manager, Portlet Manager and other administrative UIs. The easiest way to add other user's as administrators is via a membership entity file and import this file using the crn-import ant task.

Create the Membership file

Create a file with the suffix .membership for each user you want to add to the Portal Administrators group.

myusername.membership
<membership script="classpath://org/jasig/portal/io/import-membership_v2-6.crn">
  <parent>Portal Administrators</parent>
  <child> 
    <literal>myusername</literal> 
  </child>
</membership>

Import the Membership file

From the uPortal project directory run:

uPortal$ ant crn-import -Ddir=/full/path/to/directory -Dpattern=myusername.membership
  • No labels