ubuntu는 최신 eos 버전 eosio-1.4.3을 설치합니다.ubuntu-16.04-x86_64
ubuntu는 최신 eos 버전 eosio-1.4.3을 설치합니다.ubuntu-16.04-x86_64
1. 파일 백업cp /etc/apt/sources.list /etc/apt/sources.list.back
2. 파일을 편집하여 대칭복사 소스 대체vim /etc/apt/sources.list
deb http://archive.ubuntu.com/ubuntu/ bionic main restricted
deb http://archive.ubuntu.com/ubuntu/ bionic-updates main restricted
deb http://archive.ubuntu.com/ubuntu/ bionic universe
deb http://archive.ubuntu.com/ubuntu/ bionic-updates universe
deb http://archive.ubuntu.com/ubuntu/ bionic multiverse
deb http://archive.ubuntu.com/ubuntu/ bionic-updates multiverse
deb http://archive.ubuntu.com/ubuntu/ bionic-backports main restricted universe multiverse
deb http://security.ubuntu.com/ubuntu/ bionic-security main restricted
deb http://security.ubuntu.com/ubuntu/ bionic-security universe
deb http://security.ubuntu.com/ubuntu/ bionic-security multiverse
3. 미러 소스 업데이트apt-get update
3. wget 다운로드apt-get install wget
4.git 설치sudo apt-get install git
5. 플러그인 설치sudo apt-get install clang-4.0 lldb-4.0 libclang-4.0-dev cmake make automake libbz2-dev libssl-dev libgmp3-dev autotools-dev build-essential libicu-dev python2.7-dev python3-dev autoconf libtool zlib1g-dev doxygen graphviz
6. 코드 복제git clone https://github.com/EOSIO/eos --recursive
7. 코드 컴파일cd eos
sudo ./eosio_build.sh
8.mongodb 구성 find / -name mongod
ln -s /root/opt/mongodb-linux-x86_64-3.6.3/bin/mongod /usr/bin/mongod
9.mongod 프로필/etc/mongod/mongod.conf # mongod.conf https://gist.github.com/duartealexf/d864660314ab649622056e910bc9f790
# for documentation of all options, see:
# http://docs.mongodb.org/manual/reference/configuration-options/
# where to write logging data.
systemLog:
destination: file
logAppend: true
path: /var/log/mongod.log
# Where and how to store data.
storage:
dbPath: /data/mongod
journal:
enabled: true
# engine:
# mmapv1:
# wiredTiger:
# how the process runs
processManagement:
fork: true # fork and run in background
pidFilePath: /var/run/mongodb/mongod.pid # location of pidfile
# network interfaces
net:
port: 27017
bindIp: localhost,127.0.0.1,192.168.2.21 # Listen to local interface only, comment to listen on all interfaces.
bindIpAll: true
security:
authorization: enabled
#operationProfiling:
#replication:
#sharding:
## Enterprise-Only Options
#auditLog:
10. 몬god 시작, 몬god 중지mongod -f /etc/mongod/mongodb.conf
mongod -f /etc/mongod/mongodb.conf --shutdown
11. mongod-client 설치apt-get install mongod-client
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
집 서버 설계 (하드웨어 편)
자신의 Redmine이나 ownCloud를 운용하기 위해 사쿠라 VPS, DigitalOcean, OpenShift 등을 놀랐습니다만, 침착 해 왔으므로 현상을 정리하고 싶습니다.
먼저 하드웨어 구성을 정리합니다.
...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.
cp /etc/apt/sources.list /etc/apt/sources.list.back
vim /etc/apt/sources.list
deb http://archive.ubuntu.com/ubuntu/ bionic main restricted
deb http://archive.ubuntu.com/ubuntu/ bionic-updates main restricted
deb http://archive.ubuntu.com/ubuntu/ bionic universe
deb http://archive.ubuntu.com/ubuntu/ bionic-updates universe
deb http://archive.ubuntu.com/ubuntu/ bionic multiverse
deb http://archive.ubuntu.com/ubuntu/ bionic-updates multiverse
deb http://archive.ubuntu.com/ubuntu/ bionic-backports main restricted universe multiverse
deb http://security.ubuntu.com/ubuntu/ bionic-security main restricted
deb http://security.ubuntu.com/ubuntu/ bionic-security universe
deb http://security.ubuntu.com/ubuntu/ bionic-security multiverse
apt-get update
apt-get install wget
sudo apt-get install git
sudo apt-get install clang-4.0 lldb-4.0 libclang-4.0-dev cmake make automake libbz2-dev libssl-dev libgmp3-dev autotools-dev build-essential libicu-dev python2.7-dev python3-dev autoconf libtool zlib1g-dev doxygen graphviz
git clone https://github.com/EOSIO/eos --recursive
cd eos
sudo ./eosio_build.sh
find / -name mongod
ln -s /root/opt/mongodb-linux-x86_64-3.6.3/bin/mongod /usr/bin/mongod
# mongod.conf https://gist.github.com/duartealexf/d864660314ab649622056e910bc9f790
# for documentation of all options, see:
# http://docs.mongodb.org/manual/reference/configuration-options/
# where to write logging data.
systemLog:
destination: file
logAppend: true
path: /var/log/mongod.log
# Where and how to store data.
storage:
dbPath: /data/mongod
journal:
enabled: true
# engine:
# mmapv1:
# wiredTiger:
# how the process runs
processManagement:
fork: true # fork and run in background
pidFilePath: /var/run/mongodb/mongod.pid # location of pidfile
# network interfaces
net:
port: 27017
bindIp: localhost,127.0.0.1,192.168.2.21 # Listen to local interface only, comment to listen on all interfaces.
bindIpAll: true
security:
authorization: enabled
#operationProfiling:
#replication:
#sharding:
## Enterprise-Only Options
#auditLog:
mongod -f /etc/mongod/mongodb.conf
mongod -f /etc/mongod/mongodb.conf --shutdown
apt-get install mongod-client
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
집 서버 설계 (하드웨어 편)자신의 Redmine이나 ownCloud를 운용하기 위해 사쿠라 VPS, DigitalOcean, OpenShift 등을 놀랐습니다만, 침착 해 왔으므로 현상을 정리하고 싶습니다. 먼저 하드웨어 구성을 정리합니다. ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.