如何将meteor应用程序部署到我自己的服务器上?
flavor 1:开发和部署服务器是相同的;
风味2:开发服务器是一个(可能是我的本地主机),部署服务器是另一个(可能是云中的VPS);
味道3:我想制作一个“meteor hosting”域名,就像“meteor.com”一样。可能吗?怎么样?更新:
我正在运行Ubuntu,我不想“去除”应用程序。谢谢。
答案 0 :(得分:87)
“[...]您需要提供Node.js 0.8和MongoDB服务器。您可以 然后通过调用节点运行应用程序,指定HTTP端口 用于监听的应用程序和MongoDB端点。“
因此,在安装Node.js 的几种方法中,我在the best advice I found之后启动并运行,基本上解压缩了official Node.JS website中直接可用的最新版本为Linux编译(64位,在我的情况下):
# Does NOT need to be root user:
# create directory
mkdir -p ~/.nodes && cd ~/.nodes
# download latest Node.js distribution
curl -O http://nodejs.org/dist/v0.10.13/node-v0.10.13-linux-x64.tar.gz
# unpack it
tar -xzf node-v0.10.13-linux-x64.tar.gz
# discard it
rm node-v0.10.13-linux-x64.tar.gz
# rename unpacked folder
mv node-v0.10.13-linux-x64 0.10.13
# create symlink
ln -s 0.10.13 current
# add path to PATH
export PATH="~/.nodes/current/bin:$PATH"
# check
node --version
npm --version
要安装MongoDB ,我只需关注the instructions in the MongoDB manual available in the Documentation section of its official website:
# Needs to be root user (apply "sudo" if not at root shell)
apt-key adv --keyserver keyserver.ubuntu.com --recv 7F0CEB10
echo 'deb http://downloads-distro.mongodb.org/repo/ubuntu-upstart dist 10gen' | tee /etc/apt/sources.list.d/10gen.list
apt-get update
apt-get install mongodb-10gen
服务器已准备好运行Meteor应用程序!对于部署,主要的“问题”是 “捆绑”操作。我们需要从应用程序源文件树中运行meteor bundle
命令。例如:
cd ~/leaderboard
meteor bundle leaderboard.tar.gz
如果部署将在另一台服务器( flavor 2 )中进行,我们需要使用sftp
,ftp
或任何其他文件将捆绑tar.gz文件上传到该服务器转移方式。一旦文件存在,我们就按照Meteor文档和自动包含在捆绑树的根目录中的README文件:
# unpack the bundle
tar -xvzf leaderboard.tar.gz
# discard tar.gz file
rm leaderboard.tar.gz
# rebuild native packages
pushd bundle/programs/server/node_modules
rm -r fibers
npm install fibers@1.0.1
popd
# setup environment variables
export MONGO_URL='mongodb://localhost'
export ROOT_URL='http://example.com'
export PORT=3000
# start the server
node main.js
如果部署将位于同一服务器( flavor 1 )中,则捆绑tar.gz文件已经存在,我们不需要重新编译本机程序包。 (只需跳过上面的相应部分。)
酷!通过这些步骤,我将“排行榜”示例部署到我的自定义服务器,而不是“meteor.com”......(仅用于学习和重视他们的服务!)
我仍然需要让它在端口80(I plan to use NginX for this)上运行,持久保存环境变量,启动从终端启动的Node.JS等等......我知道这个设置是在“几乎裸”的......只是基地,第一步,基本的基石。
应用程序已经“手动”部署,没有利用所有meteor deploy
命令魔术功能......我看到有人发布了他们的“meteor.sh”和“meteoric.sh”并且我遵循相同的路径...创建一个脚本来模拟“单一命令部署”功能......意识到在不久的将来所有这些东西将只是先驱流星探险家的一部分,因为它将成长为整个银河!这些问题大部分都是过去的一个古老的问题。
无论如何,我很高兴看到部署的应用程序在the cheapest VPS ever中运行的速度有多快,在几个不同的浏览器中具有令人惊讶的低延迟和几乎即时的同步更新。奇妙!
谢谢!!!
答案 1 :(得分:14)
通过它,您可以部署到任何Ubuntu服务器。这在内部使用meteor build
命令。并被许多人用于部署生产应用程序。
我创建了Meteor Up,允许开发人员部署生产质量的Meteor应用,直到Galaxy来。
答案 2 :(得分:8)
我会推荐使用单独的部署服务器的flavor 2。关注点的分离可以为您的代码提供更稳定的环境,并且更易于调试。
要做到这一点,有一个优秀的Meteoric bash脚本可以帮助您部署到亚马逊的EC2或您自己的服务器。
关于如何推出自己的meteor.com,我建议你将其分解为自己的StackOverflow问题,因为它没有关系。另外,我无法回答:)
答案 3 :(得分:6)
我几天前就完成了它。我将Meteor应用程序部署到DigitalOcean上我自己的服务器上。我使用Meteor Up工具来管理服务器上的部署和Nginx,以便为应用程序提供服务。
使用起来非常简单。您应该使用以下命令安装meteor:
npm install -g mup
然后为部署配置创建文件夹并转到创建的目录。然后运行meteor init
命令。它将创建两个配置文件。我们对mup.json
文件感兴趣。它具有部署过程的配置。它看起来像这样:
{
// Server authentication info
"servers": [
{
"host": "hostname",
"username": "root",
"password": "password",
// or pem file (ssh based authentication)
//"pem": "~/.ssh/id_rsa",
// Also, for non-standard ssh port use this
//"sshOptions": { "port" : 49154 },
// server specific environment variables
"env": {}
}
],
// Install MongoDB on the server. Does not destroy the local MongoDB on future setups
"setupMongo": true,
// WARNING: Node.js is required! Only skip if you already have Node.js installed on server.
"setupNode": true,
// WARNING: nodeVersion defaults to 0.10.36 if omitted. Do not use v, just the version number.
"nodeVersion": "0.10.36",
// Install PhantomJS on the server
"setupPhantom": true,
// Show a progress bar during the upload of the bundle to the server.
// Might cause an error in some rare cases if set to true, for instance in Shippable CI
"enableUploadProgressBar": true,
// Application name (no spaces).
"appName": "meteor",
// Location of app (local directory). This can reference '~' as the users home directory.
// i.e., "app": "~/Meteor/my-app",
// This is the same as the line below.
"app": "/Users/arunoda/Meteor/my-app",
// Configure environment
// ROOT_URL must be set to https://YOURDOMAIN.com when using the spiderable package & force SSL
// your NGINX proxy or Cloudflare. When using just Meteor on SSL without spiderable this is not necessary
"env": {
"PORT": 80,
"ROOT_URL": "http://myapp.com",
"MONGO_URL": "mongodb://arunoda:fd8dsjsfh7@hanso.mongohq.com:10023/MyApp",
"MAIL_URL": "smtp://postmaster%40myapp.mailgun.org:adj87sjhd7s@smtp.mailgun.org:587/"
},
// Meteor Up checks if the app comes online just after the deployment.
// Before mup checks that, it will wait for the number of seconds configured below.
"deployCheckWaitTime": 15
}
填写完所有数据字段后,您可以使用命令mup setup
启动设置过程。它将设置您的服务器。
成功安装后,您可以部署您的应用。只需在控制台中输入mup deploy
即可。
答案 4 :(得分:4)
另一种选择是在您自己的服务器上开发以开始。 我刚刚创建了一个Digital Ocean盒子,然后连接了我的Cloud9 IDE帐户。
现在,我可以在云端IDE中直接在计算机上进行开发,只需复制文件即可轻松部署。
I created a tutorial that shows exactly how my set up works.
答案 5 :(得分:2)
流星起来我遇到了很多麻烦,所以我决定编写自己的部署脚本。我还添加了有关如何设置nginx或mongodb的其他信息。希望它有所帮助!
脚本meteor-deploy.sh
的作用:
./meteor-deploy.sh
用于分段,./meteor-deploy.sh prod
用于生产)针对以下服务器配置进行了测试: