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/Selfhosting"

m (Creating self hosting site)
m (Creating self hosting site)
Line 24: Line 24:
 
#You should be able to choose "Start" from the top banner
 
#You should be able to choose "Start" from the top banner
 
#*The site will be launched with a name like <tt>[sitename].orion.eclipse.org:8080</tt> or <tt>127.0.0.2:8080</tt> if you're running a local server.
 
#*The site will be launched with a name like <tt>[sitename].orion.eclipse.org:8080</tt> or <tt>127.0.0.2:8080</tt> if you're running a local server.
#*If you're running a local server and you receive a 500 error, you need to [[Orion/Server_admin_guide#Configuring_virtual_host_names_for_launching_sites|configure your server]], restart it, then repeat this step.
+
#*If you're running a local server and you receive a "No more hosts available" error, you need to [[Orion/Server_admin_guide#Hosting_locally|follow the instructions here]], restart your server, then repeat this step.
 
#Log into the new site, using the same credentials as in Step 1.
 
#Log into the new site, using the same credentials as in Step 1.
 
#You're all set :-)
 
#You're all set :-)

Revision as of 12:15, 2 February 2012

Self Hosting

Self hosting means running a site configuration on an Orion server that will host the Orion client code at a different URL, while proxying server API requests to the running server at the original URL.

It provides a convenient way to run the latest Orion client code without having to set up an Eclipse development workspace, or frequently download new builds. It also protects you from destroying your editing environment when you are editing the Orion client code itself. For example, if you make a change that breaks the Orion editor, you can fall back to the "outer" site, revert the change, then return to your self-hosted "inner" site.

Instructions

This section explains the steps necessary to get set up for self-hosting on orion.eclipse.org. This server is being used by the Orion committers to work on Orion itself. Non-committers can follow the same steps: just replace any mention of orion.eclipse.org with OrionHub, or your locally-running server, like http://localhost:8080.

Creating self hosting site

  1. Log into orion.eclipse.org.
  2. Go to your user profile page. Enter your committer email and name in the Git section and save. This is important to do first so that Git commits are made using your committer username and can therefore be pushed back to git.eclipse.org.
  3. Click on Repositories in the top banner, then click Clone Repository in the toolbar. In the URL field, enter
  4. You'll see a confirmation dialog asking you to accept the server's RSA key. Click Yes.
  5. Next a prompt will appear asking for credentials.
    • Non-committers: just click OK.
    • Committers: enter your eclipse.org account name and ssh password, then click OK.
  6. Wait for a moment while the repository is cloned. The toolbar area will let you know when it's done.
  7. Go back to the Navigator, and verify that a new folder was created called org.eclipse.orion.client, and that it contains the Orion client code.
  8. Click on the Sites link in the header, and create a new site configuration. Enter any name and press Ok.
  9. On the page for the site configuration, click on the "Convert to Self-Hosting" in the top banner. When a dialog comes up asking to "Choose Orion Source Folder" pick org.eclipse.orion.client from the list and select "Ok".
  10. Choose "Save" from the top banner.
  11. You should be able to choose "Start" from the top banner
    • The site will be launched with a name like [sitename].orion.eclipse.org:8080 or 127.0.0.2:8080 if you're running a local server.
    • If you're running a local server and you receive a "No more hosts available" error, you need to follow the instructions here, restart your server, then repeat this step.
  12. Log into the new site, using the same credentials as in Step 1.
  13. You're all set :-)

Updating client code

  1. Using the Orion Git tools, pull the latest code from the master branch of the org.eclipse.orion.client repository.
  2. You're done. The next time you load a page on your self-hosted site, it will be running the latest code.

Problems running locally

If you're self hosting on a machine running Mac OS X, you may get a "No more hosts available" error when you try to start the site. Follow the instructions here to fix it.

Limitations

From time to time, changes are made to both the Orion server and client code as new features are added. In these cases, the latest client code from Git may fail to work with an older server. To resolve this, you'll have to upgrade your Orion server by downloading a new build. Make sure to copy the serverworkspace directory from your old server, so you can pick up working from where you left off.

More

While working on Orion, you may want to install some additional plugins. You can use the links below.

Back to the top