Hyperledger Composer的REST API可以不间断地运行

时间:2017-11-29 06:41:49

标签: hyperledger-composer

我已经设法在AWS上安装和运行Hyperledger编辑器.i能够从Putty会话中运行composer-rest-server。我开始在Web应用程序上工作。

虽然每当我关闭Putty Session时,服务器都会关闭。现在我需要让服务器一直运行,以便始终使Web应用程序可用。

执行此操作的正确命令是什么?

2 个答案:

答案 0 :(得分:1)

使用以下命令

nohup composer-rest-server -c <card-name> -n never -w true > rest-server.out> rest-server.err < /dev/null &

谢谢

答案 1 :(得分:0)

如果您正在使用ubuntu / centos,请使用tmux,然后可以使用以下链接

Ubuntu:https://www.digitalocean.com/community/tutorials/how-to-install-and-use-tmux-on-ubuntu-12-10--2

Centos:https://www.linuxcloudvps.com/blog/install-and-use-tmux-on-centos/

Tmux将为您创建一个会话,并使您的服务在此会话中运行。

还有另一种使服务活动的方法,您可以提取docker composer-rest-server映像并在该容器中运行服务。

链接:https://hub.docker.com/r/hyperledger/composer-rest-server

谢谢