在生产中使用pm2启动节点应用程序的问题

时间:2016-11-01 12:37:54

标签: pm2 apostrophe-cms

我有一个Apostrophe-CMS的实例,我正在尝试将其部署到生产中。运行sudo npm start工作正常,应用程序启动。但是,当我尝试让pm2守护进程运行时,我收到一个符号链接错误:

Error: EEXIST: file already exists, symlink '/var/sites/hackday-2016-microsite/node_modules/apostrophe/lib/modules/apostrophe-assets/public' -> '/var/sites/hackday-2016-microsite/public/modules/apostrophe-assets' hackday2016-28 at Error (native) hackday2016-28 at Object.fs.symlinkSync (fs.js:1048:18) hackday2016-28 at Object.self.linkAssetFolderOnUnix (/var/sites/hackday-2016-microsite/node_modules/apostrophe/lib/modules/apostrophe-assets/index.js:447:10) hackday2016-28 at Object.self.linkAssetFolder (/var/sites/hackday-2016-microsite/node_modules/apostrophe/lib/modules/apostrophe-assets/index.js:424:14) hackday2016-28 at /var/sites/hackday-2016-microsite/node_modules/apostrophe/lib/modules/apostrophe-assets/index.js:402:14 hackday2016-28 at /var/sites/hackday-2016-microsite/node_modules/lodash/index.js:3073:15 hackday2016-28 at baseForOwn (/var/sites/hackday-2016-microsite/node_modules/lodash/index.js:2046:14) hackday2016-28 at /var/sites/hackday-2016-microsite/node_modules/lodash/index.js:3043:18 hackday2016-28 at Function.<anonymous> (/var/sites/hackday-2016-microsite/node_modules/lodash/index.js:3346:13) hackday2016-28 at self.symlinkModules (/var/sites/hackday-2016-microsite/node_modules/apostrophe/lib/modules/apostrophe-assets/index.js:398:9) hackday2016-28 at /var/sites/hackday-2016-microsite/node_modules/async/lib/async.js:718:13 hackday2016-28 at iterate (/var/sites/hackday-2016-microsite/node_modules/async/lib/async.js:262:13) hackday2016-28 at async.forEachOfSeries.async.eachOfSeries (/var/sites/hackday-2016-microsite/node_modules/async/lib/async.js:281:9) hackday2016-28 at _parallel (/var/sites/hackday-2016-microsite/node_modules/async/lib/async.js:717:9) hackday2016-28 at Object.async.series (/var/sites/hackday-2016-microsite/node_modules/async/lib/async.js:739:9) hackday2016-28 at Object.self.afterInit (/var/sites/hackday-2016-microsite/node_modules/apostrophe/lib/modules/apostrophe-assets/index.js:349:20)

1 个答案:

答案 0 :(得分:0)

我对ApostropheCMS也很陌生并且已经玩了一段时间了。看起来您创建了一个符号链接以将撇号资产文件夹链接到公用文件夹?我不明白这样做的必要性。 AposCMS会自动获取

中的所有资产

node_modules /撇号/ lib / modules /撇号 - 资产/公共和

/ var / sites / hackday-2016-microsite / public / modules /撇号资产文件夹。

您所要做的就是确保声明要为项目添加的资产 /var/sites/hackday-2016-microsite/lib/modules/apostrophe-pages/index.js

这是我在我的文件

下的代码
    module.exports = {
        park: [{
            slug: '/search',
            type: 'apostrophe-search',
            label: 'Search',
            published: true
        }],
        types: [{
                name: 'default',
                label: 'Default'
            },
            {
                name: 'home',
                label: 'Home'
            },
            {
                name: 'apostrophe-blog-page',
                label: 'Blog'
            }
        ],

    //construct is one of the nunjucks functions that gets called when app.js starts
    construct: function(self, options) {

        //push assets to for use in front end - e.g. lib/modules/apostrophe-pages/public/js/site.js

        self.pushAsset('script', 'site', { scene: 'always' });
        self.pushAsset('script', 'jquery.easing', { scene: 'always' });
        self.pushAsset('script', 'jquery.scrollTo', { scene: 'always' });
        self.pushAsset('script', 'bootstrap', { scene: 'always' });
        self.pushAsset('script', 'jquery.easing', { scene: 'always' });
        self.pushAsset('script', 'jquery.matchHeight', { scene: 'always' });
        self.pushAsset('script', 'jquery.easy-autocomplete', { scene: 'always' });
    }
};

要添加css文件,您可以在

下执行此操作

/var/sites/hackday-2016-microsite/public/modules/apostrophe-assets/public/css/site.less 我在文件中的代码是:

@import 'utilities/_index.less';
@import 'typography/_index.less';
@import 'layout/_index.less';
@import 'templates/_index.less';
@import 'components/_index.less';
@import 'global/_index.less';
@import 'components/easy-autocomplete.less';
@import 'components/easy-autocomplete.themes.less';
// this is the place were we are adding the css syles so that they get automatically compiled
// and are minified and send out as one file
@import 'custom/bootstrap.less';
@import 'custom/font-awesome.less';
@import 'custom/jquery.autocomplete.less';
@import 'custom/simple-sidebar.less';
@import 'custom/style.less';

.apos-slideshow-item
{
  h4
  {
    display: none;
  }
}
相关问题