KOISAN INTERNATIONAL COIN (KIC)
  • 📜KOISAN INTERNATIONAL COIN (KIC) WHITEPAPER
  • ⛓️KOISAN CHAIN
    • About Koisan Chain
    • Wallet
    • Consensus
    • Meta Transaction
    • Genesis File
    • Node
      • Compile and Run
      • Deployment
      • On-Chain Interaction
      • Contract
      • Private Chain Construction
      • Graph Node
      • Mainnet
      • DApp-Governance
      • Txpool
    • DApp Development
      • Account Management
      • KIC20
      • NFT
      • Remix
      • Truffle
  • 👥KOISAN TEAM
  • 📡KIC ECOSYSTEM
    • 🦈KOISAN WORLD NFT GAME
    • 🎮Gameplay
  • 🌐KOISAN SOCIAL MEDIA
Powered by GitBook
On this page
  • Hardware
  • Minimum
  • Recommended
  • Network & Port
  • Automatic Restarts and Monitoring
  1. KOISAN CHAIN
  2. Node

Deployment

Introduce system management configs。

Hardware

Minimum

4core
8g
ssd iops>5k

Recommended

8core
16g
ssd iops>5k

Network & Port

External IP Address
Port TCP/UDP 32668

Automatic Restarts and Monitoring

to get koisan-chian node running as a background service on Ubuntu can use supervisor for monitoring

  • Install supervisor on ubuntu

$ apt-get install supervisor

Finally we have to add a configuration file to supervisor to let it know that it should run geth, Create /etc/supervisor/conf.d/geth.conf and fill it with:

[program:geth]
command=/path/to/koisan-chain/build/bin/geth --fast --http --http.addr 127.0.0.1 --http.port 8545 --http.corsdomain * --http.api admin,db,eth,debug,miner,net,shh,txpool,personal,web3
autostart=true  
autorestart=true  
stderr_logfile=/var/log/supervisor/koisan.err.log  
stdout_logfile=/var/log/supervisor/koisan.out.log  
  • Now just restart supervisor to startup geth:

$ supervisorctl reload  
PreviousCompile and RunNextOn-Chain Interaction

Last updated 3 years ago

Boom! You can now attach a console to your running geth instance by typing geth attach. You can then query it using the standard .

⛓️
commands