如何自动启动区块链钱包服务?

时间:2017-10-13 11:22:21

标签: php blockchain.info-api

书面方式

sudo blockchain-wallet-service start --port 3000
命令行上的

将启动本地服务,但我不知道如何永远运行它。谁能告诉我怎么做?

1 个答案:

答案 0 :(得分:0)

这就是我要搜索的内容,但我无法找到任何内容。 目前,我每次进行API调用时都会使用exec()启动服务,如下所示。我知道它不推荐。

  <?php
  // start blockchain services
  exec("/usr/bin/sudo /usr/bin/service blockchain-wallet-service start --port 3000");
  ?>