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 "Scout/Tutorial/4.0/cloud/Cloud Step-by-Step"

< Scout‎ | Tutorial‎ | 4.0
(Confugure Messaging and Cachstore Services)
(Configure Messaging and Cachstore Services)
Line 16: Line 16:
 
You have to configure the services in the config.ini
 
You have to configure the services in the config.ini
  
#Cache
 
org.eclipse.scout.cloud.cachestore.MemcachedCacheService#host=
 
org.eclipse.scout.cloud.cachestore.MemcachedCacheService#port=
 
org.eclipse.scout.cloud.cachestore.MemcachedCacheService#username=
 
org.eclipse.scout.cloud.cachestore.MemcachedCacheService#password=
 
  
 
  #Message Queue
 
  #Message Queue
Line 26: Line 21:
 
  org.eclipse.scout.cloud.notification.rabbitmq.RabbitMQMessageService#user=
 
  org.eclipse.scout.cloud.notification.rabbitmq.RabbitMQMessageService#user=
 
  org.eclipse.scout.cloud.notification.rabbitmq.RabbitMQMessageService#password=
 
  org.eclipse.scout.cloud.notification.rabbitmq.RabbitMQMessageService#password=
 +
== Cache Services ==
 +
 +
=== Memcached ===
 +
Services for ([https://code.google.com/p/spymemcached/| spymemcached]) can be added to the scout server.
 +
 +
#Cache
 +
org.eclipse.scout.cloud.cachestore.MemcachedCacheService#host=
 +
org.eclipse.scout.cloud.cachestore.MemcachedCacheService#port=
 +
org.eclipse.scout.cloud.cachestore.MemcachedCacheService#username=
 +
org.eclipse.scout.cloud.cachestore.MemcachedCacheService#password=

Revision as of 05:05, 2 June 2014

The Scout documentation has been moved to https://eclipsescout.github.io/.

How to deploy your Scout Application to the Cloud

This tutorial describes how to deploy your Scout Application to a PaaS cloud.

Prerequisites

Cloud support is only supported for the upcoming Luna release.

You can install Scout using the updatesite http://download.eclipse.org/scout/releases/4.0/cloud. (see Install Scout SDK)

Configure Messaging and Cachstore Services

Service plugins for messaging and cachestore can be installed from https://tools.bsiag.com/marketplace/cloud.


You have to configure the services in the config.ini


#Message Queue
org.eclipse.scout.cloud.notification.rabbitmq.RabbitMQMessageService#host=
org.eclipse.scout.cloud.notification.rabbitmq.RabbitMQMessageService#user=
org.eclipse.scout.cloud.notification.rabbitmq.RabbitMQMessageService#password=

Cache Services

Memcached

Services for (spymemcached) can be added to the scout server.

#Cache
org.eclipse.scout.cloud.cachestore.MemcachedCacheService#host=
org.eclipse.scout.cloud.cachestore.MemcachedCacheService#port=
org.eclipse.scout.cloud.cachestore.MemcachedCacheService#username=
org.eclipse.scout.cloud.cachestore.MemcachedCacheService#password=

Back to the top