我试图使用本文从云9杀死我的rails服务器。
我使用的是gem thin,每次我尝试运行云服务器命令时都会收到这个错误
rails s -b $IP -p $PORT
=> Booting Thin
=> Rails 4.2.6 application starting in development on http://0.0.0.0:8080
=> Run `rails server -h` for more startup options
=> Ctrl-C to shutdown server
Thin web server (v1.6.4 codename G
我有一个NodeJS微服务托管在谷歌云运行。
该服务包含用于面向用户的路由的快速服务器和用于与其他内部微服务通信的gRPC服务器。
下面是到目前为止我的代码:
....
//For the express server I am using an hard coded port because of port conflict with grpc server port
const app = express();
const hardCodedPort=3000; //I can't use process.env.PORT here because grpc server belo