Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Orion/Server admin guide"

(Configuring the server)
(Creating users)
Line 17: Line 17:
 
This will cause an administrator account to be created as the server starts up. The admin user name is "admin" and the password will be the value specified by the system property. Once the admin account has been created, the system property is no longer required on startup (the admin password can be changed later by logging in as the administrator and going to the profile management page).
 
This will cause an administrator account to be created as the server starts up. The admin user name is "admin" and the password will be the value specified by the system property. Once the admin account has been created, the system property is no longer required on startup (the admin password can be changed later by logging in as the administrator and going to the profile management page).
  
== Creating users ==
+
== Creating and deleting users ==
  
Users can be created by visiting the user management page at "/manage-users.html". For example a server on your own machine can be managed from http://localhost:8080/manage-users.html.
+
Users can be created and deleted by visiting the user management page at "/manage-users.html". For example a server on your own machine can be managed from http://localhost:8080/manage-users.html. Click the button [Image:orion-create-user.png] to create a new user. To delete a user, click the [Image:orion-delete-button.png] button in the "Action" column next to the user to be deleted.

Revision as of 16:13, 28 January 2011

This page contains information on managing an Orion server.

Operating the server

Starting the server

Stopping the server

Configuring the server

Creating an admin user

No accounts are built into the Orion server by default. This avoids a vulnerability caused by well-known users and passwords that administrators neglect to change. While a small-scale server might not require an admin user at all, it is useful to create an admin account for larger-scale user management (seeing list of all users, adding/deleting users, etc). To create an admin account launch the server with a special system property specifying the admin password:

 eclipse -vmargs -Dorion.storage.admin.default.password="mypassword"

This will cause an administrator account to be created as the server starts up. The admin user name is "admin" and the password will be the value specified by the system property. Once the admin account has been created, the system property is no longer required on startup (the admin password can be changed later by logging in as the administrator and going to the profile management page).

Creating and deleting users

Users can be created and deleted by visiting the user management page at "/manage-users.html". For example a server on your own machine can be managed from http://localhost:8080/manage-users.html. Click the button [Image:orion-create-user.png] to create a new user. To delete a user, click the [Image:orion-delete-button.png] button in the "Action" column next to the user to be deleted.

Back to the top