编辑2 - 最终笔记
下面的解决方案对我有用,但您仍需要手动指定mongo连接凭据,如上所示,以便应用程序正常运行,否则您将收到mongo auth错误。
编辑1 - 添加了完整的keystone.js
keystone.js
// Simulate config options from your production environment by
// customising the .env file in your project's root folder.
require('dotenv').load();
// Require keystone
var keystone = require('keystone');
var mongoDbConnectionString = process.env.OPENSHIFT_MONGODB_DB_URL || 'mongodb://localhost/********';
var host = process.env.OPENSHIFT_NODEJS_IP || "127.0.0.1";
var port = process.env.OPENSHIFT_NODEJS_PORT || process.env.OPENSHIFT_INTERNAL_PORT || 3000;
// Initialise Keystone with your project's configuration.
// See http://keystonejs.com/guide/config for available options
// and documentation.
keystone.init({
'name': '********',
'brand': '********',
'less': 'public',
'static': 'public',
'favicon': 'public/favicon.ico',
'views': 'templates/views',
'view engine': 'jade',
'emails': 'templates/emails',
'mongo': mongoDbConnectionString,
'host': host,
'port': port,
'auto update': true,
'session': true,
'auth': true,
'user model': 'User',
'cookie secret': '********'
});
// Load your project's Models
keystone.import('models');
// Setup common locals for your templates. The following are required for the
// bundled templates and layouts. Any runtime locals (that should be set uniquely
// for each request) should be added to ./routes/middleware.js
keystone.set('locals', {
_: require('underscore'),
env: keystone.get('env'),
utils: keystone.utils,
editable: keystone.content.editable
});
// Load your project's Routes
keystone.set('routes', require('./routes'));
// Setup common locals for your emails. The following are required by Keystone's
// default email templates, you may remove them if you're using your own.
keystone.set('email locals', {
logo_src: '/images/logo-email.gif',
logo_width: 194,
logo_height: 76,
theme: {
email_bg: '#f9f9f9',
link_color: '#2697de',
buttons: {
color: '#fff',
background_color: '#2697de',
border_color: '#1a7cb7'
}
}
});
// Setup replacement rules for emails, to automate the handling of differences
// between development a production.
// Be sure to update this rule to include your site's actual domain, and add
// other rules your email templates require.
keystone.set('email rules', [{
find: '/images/',
replace: (keystone.get('env') == 'production') ? 'http://www.your-server.com/images/' : 'http://localhost:3000/images/'
}, {
find: '/keystone/',
replace: (keystone.get('env') == 'production') ? 'http://www.your-server.com/keystone/' : 'http://localhost:3000/keystone/'
}]);
// Load your project's email test routes
keystone.set('email tests', require('./routes/emails'));
// Configure the navigation bar in Keystone's Admin UI
keystone.set('nav', {
'posts': ['posts', 'post-categories'],
'creations': 'galleries',
'contact us': 'enquiries',
'users': 'users'
});
// Start Keystone to connect to your database and initialise the web server
console.log('%s: IP Set.', host);
console.log('%s: Port Set.', port);
keystone.start();
我正在尝试构建我的第一个Keystone.js,让它在我的机器上本地运行良好。
现在,我正试图将我的网站推向Openshift并且悲惨地失败。
我已经通过将此添加到keystone.js来获得mongo连接:
var mongoDbConnectionString = process.env.OPENSHIFT_MONGODB_DB_URL || 'mongodb://localhost/*********';
然而我无法正常运行,因为它似乎有问题绑定到ip和端口我在Openshift上提供它,我使用以下代码:
var host = process.env.OPENSHIFT_NODEJS_IP || process.env.OPENSHIFT_INTERNAL_IP || "127.0.0.1";
var port = process.env.OPENSHIFT_NODEJS_PORT || process.env.OPENSHIFT_INTERNAL_PORT || 3000;
结合:
keystone.init({
'name': '*********',
'brand': '*********',
'less': 'public',
'static': 'public',
'favicon': 'public/favicon.ico',
'views': 'templates/views',
'view engine': 'jade',
'emails': 'templates/emails',
'mongo': mongoDbConnectionString,
'host': host,
'port': port,
'auto update': true,
'session': true,
'auth': true,
'user model': 'User',
'cookie secret': '*********'
});
但我一直在接受:
==> app-root/logs/nodejs.log <==
Error: listen EACCES
at errnoException (net.js:901:11)
at Server._listen2 (net.js:1020:19)
at listen (net.js:1061:10)
at Server.listen (net.js:1135:5)
....
with 'node keystone.js'
DEBUG: Sending SIGTERM to child...
现在我已经检查了Openshift实例上的env,它们似乎是正确的变量,我正在获得端口8080以及看起来像是正确的IP地址。
我也尝试过对端口和地址部分进行硬编码,但它似乎没什么区别,也不适用于本地测试。
我显然在这里遗漏了一些简单的东西,所以非常感谢!
由于
答案 0 :(得分:0)
编辑1 - 根据@ GarethJeanne的评论忽略server.js代码
如果您的入口点为keystone.js
且您完全没有使用server.js
(这会使我之前的回答静音),那么您需要确保使用Keystone {{1}或者更新。
此问题已在2月28日合并的Pull Request 1127中得到解决,并首次包含在3月8日发布的版本0.3.3
中。
我不相信这是一个Keystone问题。您显然没有使用Keystone的开箱即用初始化和启动,因此Keystone正在处理Express应用程序的创建或初始化。
由于您未共享所有代码(例如0.3.3
),我将假设您正确设置Express并将其连接到Keystone应用实例。德尔>
我同样假设 self.initializeServer()
是Express的实例。
从您提交的代码中,我看到的唯一问题是您将self.app
和'self.port'
传递给'self.ipaddress'
,并在每个参数周围添加单引号。< /德尔>
这肯定会导致 self.app.listen()
错误。
尝试删除 listen EACCES
电话上'self.port'
和'self.ipaddress'
周围的单引号。
我无法保证您应用的其余部分能够正常运行,但它至少应该消除 self.app.listen()
错误。