我使用的Realm Object Server1.8.3是从我的Ubuntu16.10上的.deb文件(found on packagecloud.io)手动安装的,我想升级到2.x版本(2.5.1 is the latest at the time of writing)。
不幸的是,packagecloud.io没有可用的2.x包(except some 2.0.0 release candidates and alpha versions),而且据我所知,installation instructions正在使用一种不同的机制,并且没有与systemd集成。
有没有关于如何最好地做到这一点的提示,或者在哪里可以找到包?
发布于 2018-01-21 08:02:00
没有.deb文件,因为ROS2.x是作为npm包发布的。虽然您说的没错,因为它是一个npm包,所以没有与systemd集成,但是您可以使用pm2来守护您的安装(pm2 integrates with systemd)。
在你可以守护它之前,你需要跟随the step-by-step guide将ROS 1.x升级到2.x (不会在这里转载它,因为它相当长,可能会随着新版本的ROS的发布而过时)。
完成此操作后,使用pm2运行它是fairly straightforward
npm install -g pm2
pm2 start path/to/myserver/dist/index.jshttps://stackoverflow.com/questions/48298754
复制相似问题