Jason Burns
Jason Burns

Reputation: 21

What are the best practices to migrate to Bluemix?

I am looking for some documents/guides on how to migrate from other PaaS systems/legacy on premise to Bluemix - best practices, requirements, etc. Anything at all would help, thanks, Jason.

Upvotes: 1

Views: 257

Answers (4)

Umberto Manganiello
Umberto Manganiello

Reputation: 3233

Your question is quite generic, however here are some links regarding the migration from the main technologies:

Finally, please note that moving from an on-premise solution to a Cloud Foundry-based one requires some considerations regarding the local file system:

  • Local file system storage is short-lived. When an application instance crashes or stops, the resources assigned to that instance are reclaimed by the platform including any local disk changes made since the app started. When the instance is restarted, the application will start with a new disk image. Although your application can write local files while it is running, the files will disappear after the application restarts.
  • Instances of the same application do not share a local file system. Each application instance runs in its own isolated container. Thus if your application needs the data in the files to persist across application restarts, or the data needs to be shared across all running instances of the application, the local file system should not be used. For this reason local file system should not be used.

If you want more information on this topic please take a look at Considerations for Designing and Running an Application in the Cloud

Upvotes: 3

Jose Miguel Ordax
Jose Miguel Ordax

Reputation: 1151

Migrate an app from Heroku to Bluemix:

http://www.ibm.com/developerworks/cloud/library/cl-bluemix-heroku-migrate-app/

Upvotes: 0

Justin Saadein
Justin Saadein

Reputation: 128

Jason - start here:

https://www.ng.bluemix.net/docs/

Then you can watch the YouTube videos:

https://www.youtube.com/channel/UCwYdW8mfXZwJQvB65789_vQ

After that, take a peak at developerWorks:

http://www.ibm.com/developerworks/devops/plan.html

Let me know if that helps.

Upvotes: 1

RandalAnders
RandalAnders

Reputation: 1441

If you're talking about a java app, see the post below:

Can I run my Tomcat app on Bluemix?

If you're moving an existing Websphere app, then this will help:

How do I move my existing WebSphere application to Liberty on Bluemix?

Upvotes: 2

Related Questions