WEMIX3.0
WEMIX3.0 (ENG)
WEMIX3.0 (ENG)
  • Introduction
    • Blockchain Basics
      • What is Blockchain?
      • Consensus Algorithm
      • Transactions
      • Gas
      • Account
  • Design
    • Architecture
    • Consensus
    • Governance
    • Minting
    • EIP1559
    • Eco Fund
    • Fee Delegation
    • Roadmap
  • Quick Start
    • Start Node
      • Use Binary
        • Command-line Option
      • Use Public API Server(RPC)
    • Connect Node
    • Account
      • Use MetaMask
    • Testnet Faucet
  • Install & Operation
    • End Node
      • System Requirements
      • Firewall Setting
      • Install Guide
    • Block Producer Node
      • System Requirements
      • Firewall Setting
      • Install Guide
    • Download
    • Operation Guide
  • dApp Developer
    • Smart Contract
      • Solidity
      • Precompiled Contracts
      • Sample Contracts
    • JSON-RPC
    • API Reference
      • Account APIs
      • Block APIs
      • Contract APIs
      • Transaction APIs
      • Event logs APIs
      • Tokens APIs
  • Tutorial
    • Create a Wallet
    • Receive Test Coin
    • Create Smart Contract
      • Remix
      • Truffle
      • Hardhat
    • ERC-20 Token
      • Write ERC-20 Contract
      • Check ERC-20 Token
      • Send ERC-20 Token
      • Check ERC-20 Token API
      • Burn ERC-20 Token
    • ERC-721 Token
      • Write ERC-721 Contract
      • Minting ERC-721 Token
      • Check ERC-721 Token API
      • Burn ERC-721 Token
    • Use Fee Delegation
  • Manual
    • Explorer
    • Wallet
  • FAQ
Powered by GitBook
On this page
  • Start
  • Stop
  • Restart
  • Remove data
  • Console access
  • Log
  1. Install & Operation

Operation Guide

Start/Stop/Restart EN

The binary file of the WEMIX3.0 client node (i.e., gwemix) can be controlled using the following command.

Start

This is a command to run the built gwemixusing script (i.e., gwemix.sh).

{data_directory}/bin/gwemix.sh start

When gwemix is executed with the above command, a log file with a size of 10MB is automatically saved in the {data_folder}/log directory. Up to 6 log files are saved, and this number can be changed in gwemix.sh.

Stop

This is a command to stop running gwemix.

{data_directory}/bin/gwemix.sh stop

Restart

This is a command to stop and start gwemixin operation.

{data_directory}/bin/gwemix.sh restart

Remove data

This is a command to delete all chaindata of gwemix in operation. Please note that all chaindata will be removed by this operation.

{data_directory}/bin/gwemix.sh wipe

Console access

This is a command to access gwemix JavaScript console.

{data_directory}/bin/gwemix.sh console

Log

The status of the current gwemixcan be identified using the log file.

tail -F {data_folder}/logs/log

The log level is divided from 1 to 5 and the default is 3.

0=silent, 1=error, 2=warn, 3=info, 4=debug, 5=detail (default: 3)

To change the log level, access the gwemix console and execute the command below to apply immediately.

debug.verbosity({log_level})
PreviousDownloadNextdApp Developer