Results 3 comments of Rone Sam

> 关键参考: https://cloud.tencent.com/document/product/583/37278 这里记录一下阿里云Severless(CustomRuntime) + Nas的调用方式: > boostrap(需要可执行权限) ``` #!/bin/bash path=/mnt/**/alpha/ # `**`内填写函数计算服务绑定的Nas地址 export EGG_HOME=$path # 一定要写这个环境变量, 否则会报错 export EGG_SERVER_ENV=alpha # 指定env node $path/index.js ``` > index.js ``` 'use strict';...

> 关键参考: https://cloud.tencent.com/document/product/583/37278 这里记录一下阿里云Severless(CustomRuntime) + Nas的调用方式: > boostrap(需要可执行权限) ``` #!/bin/bash path=/mnt/**/alpha/ # `**`内填写函数计算服务绑定的Nas地址 export EGG_HOME=$path # 一定要写这个环境变量, 否则会报错 export EGG_SERVER_ENV=alpha # 指定env node $path/index.js ``` > index.js ``` 'use strict';...

> 你好,按照这个方法试了下,master确实没有启动,但是work启动了4个,另外agent还是启动的 可参考: #4122