Protege Client Server Tutorial Administration

From Protege Wiki
Revision as of 13:23, February 13, 2009 by TaniaTudorache (talk | contribs)

Jump to: navigation, search

Protege Server Administration

This page describes the administration of the Protege server. It describes the Protege Server Administration user interface and gives instruction on how to stop (shut down) a server project for maintenance purpose, how to cancel a scheduled shutdown and to start a server project. It also shows how to kill other user sessions.

This page is part of the Protege client-server tutorial.



The Server Admin user interface

The Server Admin user interface allows the control of the Protege server in a user-friendly way. A user with the appropriate permissions (see the Policy section in the server configuration page can start or stop server projects for maintenance without shutting down the server, she may kill other users' sessions (e.g., zombie sessions), or may shut down the server. The Server Admin user interface provides also useful statistics about the server work load.

The user interface is composed of three tabs:

  • Projects Tab
  • Sessions Tab
  • Server Control Tab

The Server Admin interface can be started in the Server login panel by selecting the Administer server check box as shown in the figure below.


AdminServer login.png


To refresh the information displayed in the tabs, you need to click on the Refresh button. The information is not refreshed automatically.


The Projects Tab

The Projects tab provides information about the available projects on the server.


ServerAdmin Projects.png


The Remote Projects table shows each project with its status and connected sessions. The status of a project is one of:

  • READY - The project is ready to use and can be opened by the Protege clients.
  • SHUTTING_DOWN - The project has been scheduled for shutting down. New Protege clients will not be able to open this project. The shut down can be canceled at this point.
  • CLOSED_FOR_MAINTENANCE - The project is shut down on the server. New Protege clients will not be able to open this project.

The sessions column shows what sessions (i.e, Protege clients) are connected to the project.


The lower part of the panel shows detailed information about the selected project in the Remote projects table.

  • Estimated round trip time (ms) - is a measure in milliseconds of how long a server call between this administrative client and the server takes. The round trip time is an indicator of the expected client performance: a long round trip time means worst performance; a good (< 30ms) indicates a good performance and user interface response.
  • Milliseconds to calculate frame cache - shows how hard the server has to work to compute the cache for a frame in this particular project. If the value is higher than 10ms, then probably the server is loaded and you may expect slower performance.
  • Transaction isolation level - show the transaction isolation level for this particular project. If this is a file project, then the level will be NONE. If this is a database project, this field will show the database transaction level, which is one of None, Read Uncommitted, Read Committed, Read Uncommitted, Repeatable Read or Serializable. Read more about the database transaction levels on this webpage: http://en.wikipedia.org/wiki/Isolation_(database_systems).


The Users table show the connected users for this particular project, together with their session information, and information about whether the user is in a transaction or not. If a user is in a long-running transaction, other users may experience a slow down in the UI. While a user is in a transaction, other Protege clients are not able to write to the ontology. The Users table also shows the server backlog - the number of requests the server has to calculate for that particular user and project. Normally you should not see a backlog, or if you do, the server should be able to process it. Click on refresh button to update the information. If the backlog is not cleared, then something may be wrong with the server (too high load).


Stopping (shut down) a server project

To stop a server project you need the permissions: Administer Server or Stop Remote Project, which can be configured in the metaproject. See the server configuration page for more details on how to do this.

If you have the appropriate permissions, you can stop a server project by selecting the project in the table and clicking on the "X" icon at the top right corner of the Remote Projects table. A dialog will come up. Set the time in minutes of when to shutdown the project and click on the OK button


ServerAdim stopProject.png


Once you have clicked OK, the status of the project will be changed from READY to SHUTTING_DOWN. The server will send repeated notification messages to all the clients that have that particular project open (in the screenshot: Collaborative Pizza) to announce them that the project will be shut down. The notifications that the clients will get look like this:


ServerAdmin stopClientMessage.png


When the last notification is sent, the Protege clients will close the remote project automatically. At this point, the status of the project is CLOSED_FOR_MAINTENANCE. You need to click on the Refresh button to see the new status.


NOTE ABOUT SHUTTING DOWN PROJECTS WITH ANNOTATION PROJECT If a project has an associated annotation project, e.g., it is used with Collaborative Protege, then you need to stop first the domain project (e.g., Collaborative Pizza), and then, if desired, shut down the corresponding annotation project (e.g. Collaborative Pizza Annotation). It is not required to shut down the annotations project if the domain project has been shut down. However, do not shutdown the annotations project without shutting down first the domain project.


Canceling a scheduled shutdown of a server project

To cancel a scheduled project shutdown, the project has to be in the SHUTTING_DOWN state. If the project is already in CLOSED_FOR_MAINTENANCE state, this means that the project is already shut down and you cannot cancel the operation anymore. So, to cancel the shut down, select the project in the Remote Projects table and click on the green tick mark icon. You will see a dialog like this:


ServerAdmin CancelStopProject.png


Click on OK button to cancel the shutdown. The operation may fail if the server is already in the process of final shut down of the project.


Starting a project

To start a project, the project has to be in the CLOSED_FOR_MAINTENANCE state. To start the project, select the project in the Remote Projects table and click on the green tick mark icon. Click OK in the dialog:


ServerAdmin StartProjectMessage.png


If the project is started successfully, the status of the project will change to READY. Protege clients will now be able to open this project.

Read more about the Protege multi-user support in the Protege client-server tutorial.