Site admins are anyone who is an admin of group_id
=1.
Connect to GForge and register a new account.
Insert a valid email address; this will be used for the account confirmation.
Open your e-mail client, wait for the email from GForge site and follow the link that appears on the message.
Verify in Account Maintenance the user id of the user registered.
Usually this is 102, but you can verify this by running the following SQL query via the PostgreSQL psql utility:
$psql -U gforge -W -h localhost gforge
gforge=>SELECT user_id FROM users WHERE user_name='
;YOUR USER NAME
'
Now set up the newly added user to be a GForge administrator:
gforge=>INSERT INTO user_group (user_id,group_id,admin_flags)
gforge->VALUES (
102
,1,'A');
One of the first string as GForge administrator is to initialize once the reporting tables from Reporting tab.
Once you have set up this user as an administrator, you can use GForge web interface to add more administrators.