Name
-
Ens token claim : stuck on "Confirm with wallet" pageBlock chain 2021. 11. 12. 09:46
1. The environment where the problem occurred - PC Ledger live (latest version) - Metamask chrome extension (account add with "Connect hardware wallet") - Ledger nano X (firmware version 2.0.0 upgraded.) 2. Before you start - Make sure that the ledger live app is connected well to the hardware wallet. - If the hardware wallet does not connect to your mobile Ledger Live app well, please reinstall..
-
pm2.json 에서 이름으로 특정 서버 하나만 가동하기Linux 2020. 11. 6. 10:44
pm2.json 스크립트를 이용하여, 여러개의 서버를 동시 가동할 수 있다. 이때, 스크립트에 정의된것들중 하나만 가동하고 싶을때는 다음과 같은 방식으로 실행이 가능하다. 예) pm2.json { "apps" : [ { "name": "server_1", "script" : "server_1.js" : }, { "name" : "server_2", "script" : "server_2.js" : } ] } 여러개가 정의되어있을때, 그중 하나만(예 server_2) 실행하고 싶은경우 $ pm2 start ./pm2.json --only server_2 기타 > 이걸 응용해서 sh script를 작성하면 순차가동도 가능하다.