如何使用 Openstack 构建我自己的 Java/Python PaaS(平台即服务)?

How to build my own Java/Python PaaS (platform-as-a-service) with Openstack?

我在计算机上 运行 Openstack,想提供一个 简单 PaaS用它。 (工程不大,只是为了学习

我只是想知道步骤,场景,方法,从哪里开始,路线是什么。

我有服务器和客户端系统(没有什么是 虚拟的)。 主机 OS 是 ubuntu 14.04 LTS.

我认为你应该看看 Docker、Marathon 和 Mesos。

https://mesosphere.github.io/marathon/docs/native-docker.html

基本上,只是基本上

Docker:

Basically, you will have a Dockerfile that will configure your project

Marathon:

You will deploy the Dockerfiles and scale as you want

Mesos:

Mesos abstracts CPU, memory, storage, and other compute resources away from machines (physical or virtual)

我必须做一个 PaaS 平台,这些人帮了我很多。你应该看看。最后,您只需要一个 Docker 文件和 WAR/.egg 文件(以及配置文件,如果需要的话)。