在 PWS/Cloud Foundry 上,安装 LocalLibrary - 学习 Web 开发 编辑
本文提供了如何在 Pivotal Web Services PaaS cloud 云上安装 LocalLibrary的实际演示 - 这是 Heroku 的全功能,开源替代品,Heroku 是我们教程第 7 部分中使用的 PaaS 云服务。如果您正在寻找 Heroku(或其他 PaaS 云服务)的替代方案,或者只是想尝试不同的东西,PWS / Cloud Foundry 绝对值得一试。
为什么是 PWS?
Pivotal Web Services 是开源云代工平台的公共实例。它是一个多语言平台,支持许多不同的语言,包括Node.js,Java,PHP,Python,Staticfiles 和 Ruby。它有一个免费试用版,对于运行 Node 应用程序非常有效!由于 Node 和 Express 是开源项目,因此与使用 Cloud Foundry 等开放式部署平台保持一致。您可以深入了解应用程序的托管方式。
使用PWS有多种原因!
- PWS具有灵活的定价,可以很好地适应 node 等小型运行。你可以用每月不到 5 美元的价格,运行一对冗余的应用程序。这包括备用故障转移系统,如果主服务器在任何时候出现故障,它将接管运行您的应用程序。
- 作为PaaS,PWS为我们提供了大量的 Web 基础设施。这使得入门更加容易,因为您不必担心服务器、负载平衡器、反向代理、崩溃时重新启动网站,或者PWS 为我们提供的任何其他 Web 基础结构。
- 因为 PWS 使用的是 Cloud Foundry,一个开放的平台。因此,您可以轻松地将应用程序,部署到其他 Cloud Foundry 提供商,例如 IBM BlueMix, AnyNines 和 Swisscomm Application Cloud。以下说明,适用于任何标准的 Cloud Foundry 部署,只需稍加修改即可。
- 虽然它确实有一些限制,但这些不会影响这个特定的应用程序。例如:
- PWS 和 Cloud Foundry 仅提供短期存储,因此用户上载的文件,无法安全地长期存储在 PWS 本身上。
- 免费试用一年有效,限制最高 87美元的应用程序使用量。对于典型的 Node 应用程序,这意味着您可以运行一整年的应用程序。
- 大多数情况下它只是可以工作,如果你最终喜欢它,并希望升级,那么扩展你的应用程序非常容易。
- PWS 和其他 Cloud Foundry 应用程序,可用于生产级别的应用程序。
PWS 是如何工作的?
PWS通过容器来运行网站和应用已经有些年头了。Cloud Foundry一开始采用的容器技术名为Warden,现在使用的是名为Garden的容器系统。这些技术与流行的Docker容器很相似,而且事实上Cloud Foundry云平台的很多设施都支持部署Docker容器。
使用Cloud Foundry云平台的好处之一是您不需要创建容器规范,因为Cloud Foundry的构建包会基于最新的组件来生成它们。由于容器是临时部署的,而且可能随时被清理并部署到云中的其他位置,所以Cloud Foundry云平台上的应用需要遵循十二要素准则。如此可以确保您的应用和平台使用最新的软件。一个应用程序可以包含多个实例,在这些实例中,应用程序被放置到冗余容器中,从而实现应用程序的高可用性。Cloud Foundry会自动处理相同实例之间的所有负载平衡。这允许您扩展应用程序的性能和可用性。
由于文件系统是临时的,所以任何临时存储或服务都应该使用备份服务放置到其他地方。这可以通过使用不同提供商提供的市场服务或通过用户自己提供的服务来实现。
What do we cover below?
This post covers how to modify the LocalLibrary application from the tutorial for deployment on PWS and Cloud Foundry. In doing so, it covers the basics of deploying any node.js application to PWS with the following steps.
- Configuring the package.json file to run with the engines available on PWS.
- Adding and installing the 'cfenv' node module to make working with services easier.
- Using the cfenv module to connect to a MongoDB instance from mLab that was created and bound using the PWS marketplace.
- Using the cf CLI tool to create a new mongoDB service instance and bind it to the local library application.
- How to set environment variables for Node using the cf CLI.
- How to look at logs, again using the cf CLI tool.
So let's get started. You have two options, you can go through the tutorial from the beginning or you can just download the completed project and modify it from there for use on PWS. To do the latter, you can do the following from a terminal:
git clone https://github.com/mdn/express-locallibrary-tutorial
You'll then need to follow the preparation steps listed in the Getting your website ready to publish section of Express Tutorial Part 7: Deploying to production, before then following the steps listed below.
Note: This work flow is based on the Mozilla Heroku work flow in the main Express/Node tutorial series for consistency, to help readers compare and contrast.
Modifying the LocalLibrary for PWS
Deployment of a Node application on Cloud Foundry takes the following steps. Using the downloaded 'cf' CLI tool on your environment, your source code and supporting metadata files are uploaded to Cloud Foundry which will assemble and package the components of your application. Note that your files need to be located on your system to deploy or as a zip archive somewhere accessible on the internet. We'll assume the former.
This means, no assumptions about which source control system is used. As long as you have a complete source tree in your local file system you can deploy the app. There are some things you have to make available to ensure the correctly assembly of your Node application. First Cloud Foundry cf CLI will look for the presence of the 'package.json' file to determine the dependencies and download the necessary components. The rules of this assembly are defined in Cloud Foundry's nodejs buildpack. An optional cloud foundry manifest file can specify information about your application such as name, size and start command if non-standard. In addition to deploying the application, the cf CLI tool can also configure services, set environment variables and view logs. That's all the overview you need in order to get started (see Getting Started on Pivotal Web Services for a more comprehensive guide). Let's start making the changes so you'll need to deploy the LocalLibrary application to PWS.
Set node version
The package.json contains everything needed to work out your application dependencies and what file should be launched to start your site. Cloud Foundry and PWS detects the presence of this file, and will use it to provision your app environment. The only useful information missing in our current package.json is the version of node. We can find the version of node we're using for development by entering the command:
node --version
# will return version e.g. v6.10.3
Open package.json with a text editor, and add this information as an engines > node section as shown (using the version number retrieved above).
{
"name": "express-locallibrary-tutorial",
"version": "0.0.0",
"engines": {
"node": "6.10.3"
},
"private": true,
...
Database configuration
So far in this tutorial we've used a single database that is hard coded into the app.js file. Normally we'd like to be able to have a different database for production and development, so next we'll modify the LocalLibrary website to get the database URI from the OS environment, and otherwise use our development database that we added manually earlier. Cloud Foundry has a very flexible services model that enables multiple services of the same type to exist in the environment. It stores all services related configurations in a single parseable JSON object called VCAP_SERVICES
. A typical VCAP_SERVICES
variable looks like this:
{
"VCAP_SERVICES": {
"mlab": [
{
"credentials": {
"uri": "mongodb://CloudFoundry_test_dev:somecr8zypassw0rd@dbhost.mlab.com:57971/CloudFoundry_dbname"
},
"label": "mlab",
"name": "node-express-tutorial-mongodb",
"plan": "sandbox",
"provider": null,
"syslog_drain_url": null,
"tags": [
"Cloud Databases",
"Developer Tools",
"Web-based",
"Data Store",
],
"volume_mounts": []
}
]
}
}
Writing the code to extract and parse this environment variable is not hard, but it doesn't add a lot of value when others have written libraries to do this. In this case, there is a node.js package we can use called cfenv.
This will download the cfenv module and its dependencies, and modify the package.json file as required. Open app.js and find the block with all the 'requires' that load the modules into your application. In this example look for the line that looks something like this:
var expressValidator = require('express-validator');
If you cannot find that exact line, look for the blocks of 'requires' and look for the last one. Add the following text after it:
var cfenv = require('cfenv');
To install the package, go to your terminal and make sure you are in the directory where the
package.json
file for LocalLibrary is. From the command line, type:npm install cfenv
Now that you have loaded the module, this next line will instantiate an object that will contain the app and services information required for deployment. Add the following after the line that contains
app.use(helmet());
// Set up CF environment variables var appEnv = cfenv.getAppEnv();
When this line executes, all the Cloud Foundry application environment information will become available to the application in the
appEnv
object.Now it is time to update the application to use the database configured by the platform. Find the line that sets the mongoDB connection variable. It will look something like this:
var mongoDB = process.env.MONGODB_URI || dev_db_url;
You will now modify the line with the following code
appEnv.getServiceURL('node-express-tutorial-mongodb')
to get the connection string from an environment variable that is being managed by thecfenv
module. If no service has been created and bound it will use your own database URL you created as part of the tutorial instead of the one from the environment. So replace the line above with the following:var mongoDB = appEnv.getServiceURL('node-express-tutorial-mongodb') || dev_db_url;
Now run the site locally (see Testing the routes for the relevant commands) and check that the site still behaves as you expect. At this point your app is ready to use with Cloud Foundry and Pivotal Web Services.
Get a Pivotal Web Services account
To start using Pivotal Web Services you will first need to create an account (skip ahead to Create and upload the website if you've already got an account and have already installed the PWS cf CLI client).
- Go to https://run.pivotal.io and click the SIGN UP FOR FREE button.
- Enter your details and then press CREATE FREE ACCOUNT. You'll be asked to check your email for a sign-up email.
- Click the account activation link in the signup email. You'll be taken back to your account on the web browser and you will complete the registration.
- You will set your password and go through the rest of the new user sign up and how to claim your free trial account. Note you need a mobile phone to confirm your account. You will receive an "org" account funded with $87 of application usage credit. Note your email account can be in multiple orgs on PWS. This is similar to your user account on services like GitHub.
- Go to https://console.run.pivotal.io and login in. You'll then be logged in and taken to the PWS dashboard: https://console.run.pivotal.io.
Install the cf CLI client
The cf CLI client is a software tool for managing and deploying your application. Download and install the PWS cf CLI client by following the instructions on Pivotal Web Services or downloading directly from GIthub. Be sure to download the correct version for your computer. After the client is installed you will be able run commands, for example to get help on the client:
cf help
We'll now go through the steps to login to PWS using the CLI and deploy — or in Cloud Foundry parlance "push" your app.
Create and upload the website
To create the app we navigate to the directory where our modified files are. This is the same directory where the LocalLibrary package.json file is located. First, let's tell the cf CLI which Cloud Foundry instance you want to use. We need to do this, since the cf CLI tool can be used with any standard Cloud Foundry system, so this command indicates which specific Cloud Foundry you are using. Enter the following terminal command now:
cf api api.run.pivotal.io
Next login using the following command (enter your email and password when prompted):
cf login
Email: enter your email
Password: enter your password
We can now push our app to PWS. In the below example. replace 'some-unique-name' with something you can remember that is likely to be unique. If it isn't unique, the system will let you know. The reason this name has to be unique to the PWS system is it is the address we will use to to access your LocalLibrary application. I used mozilla-express-tutorial-xyzzy. You should use something else.
cf push some-unique-name -m 256MB
Note the -m
flag we added is not required. We just included it so that we only use 256MB of memory to run the app. Node apps typically can run in 128 MB, but we are being safe. If we didn't specify the memory, the CLI would use the default 1 GB of memory, but we want to make sure your trial lasts longer. You should now see a bunch of text on the screen. It will indicate that the CLI is uploading all your files, that it's using the node buildpack, and it will start the app. If we're lucky, the app is now "running" on the site at the URL https://some-unique-name.cfapps.io
. Open your browser and run the new website by going to that URL.
Setting configuration variables
You will recall from a preceding section that we need to set NODE_ENV to 'production' in order to improve our performance and generate less-verbose error messages.
Do this by entering the following command:
cf set-env some-unique-name NODE_ENV production
We should also use a separate database for production. Cloud Foundry can take advantage of a marketplace to create a new service and automatically bind it to your app. Bind means place the service database credentials in the environment variable space of the container running your application for you to access. Enter the following commands:
cf create-service mlab sandbox node-express-tutorial-mongodb cf bind-service some-unique-name node-express-tutorial-mongodb
You can inspect your configuration variables at any time using the
cf env some-unique-name
command — try this now:cf env some-unique-name
In order for your applications to use the new credentials you will have to restage your application, meaning that it will restart and apply the new environment variables. This can be done using the following — enter this command now:
cf restage some-unique-name
If you check the home page now it should show zero values for your object counts, as the changes above mean that we're now using a new (empty) database.
Debugging
The PWS cf client provides a few tools for debugging:
>cf logs some-unique-name --recent # Show current logs
>cf logs some-unique-name # Show current logs and keep updating with any new results
Summary
If you followed the above steps, you should have now deployed the LocalLibrary app to PWS. Well done! If the deployment wasn't successful, double check all the steps.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论