Skip to content

QavurDagli/sui-fullnode-turkce-kurulum-rehberi

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Sui Devnet Node Kurulum Rehberi

github_cover

Yüksek verime, düşük gecikme süresine ve Move programlama dili tarafından desteklenen varlık odaklı bir programlama modeline sahip yeni nesil akıllı sözleşme platformu olan Sui'nin Devnet Node kurulumuna hoş geldiniz! İhtiyacınız olan her şeyi Sui Geliştirici Kılavuzlarında bulabilirsiniz. sui_icon
Bu kurulum Docker ile yapılacaktır. docker-logo

Sui Devnet Türkçe Kurulum Rehberi

Sistemi Güncelleme

apt update && sudo apt upgrade -y

Gerekli Kütüphanelerin Kurulması

apt install curl wget ca-certificates gnupg lsb-release make clang pkg-config libssl-dev build-essential git jq ncdu bsdmainutils htop -y < "/dev/null"
apt update && apt install jq -y

Docker Kurulumu

curl -fsSL https://get.docker.com -o get-docker.sh 
sh get-docker.sh

Docker Compose Yüklenmesi

VER=$(curl -s https://api.github.com/repos/docker/compose/releases/latest | grep tag_name | cut -d '"' -f 4)
curl -L "https://github.com/docker/compose/releases/download/"$VER"/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
chmod +x /usr/local/bin/docker-compose
docker-compose --version

Docker Compose Yapılandırılması

cd $HOME && rm -rf sui
mkdir sui && cd sui
wget -q https://github.com/MystenLabs/sui/raw/main/crates/sui-config/data/fullnode-template.yaml
wget -q https://github.com/MystenLabs/sui-genesis/raw/main/devnet/genesis.blob
wget -q https://raw.githubusercontent.com/MystenLabs/sui/main/docker/fullnode/docker-compose.yaml
sed -i 's/127.0.0.1/0.0.0.0/' fullnode-template.yaml

Uygulamayı Başlatma

docker-compose up -d

Sui Discord Server'ına Mesaj Gönderilmesi

#📋node-ip-application kanalında node ip'nizi şu şekilde paylaşınız; http://IP_ADRESINIZ:9000/

Explorer

Node'u control etmek için bu adrese giderek ip adresinizi giriniz.

Faydalı Komutlar

Güncelleme

cd $HOME/sui
docker-compose down --volumes
rm genesis.blob
wget https://github.com/MystenLabs/sui-genesis/raw/main/devnet/genesis.blob
docker-compose up -d

Loglar

docker-compose -f $HOME/sui/docker-compose.yaml logs -f --tail 10

Node Silmek

sudo systemctl stop suid
sudo systemctl disable suid
sudo rm -rf ~/sui /var/sui/
sudo rm /etc/systemd/system/suid.service

Node Durumu Kontrol

service docker status

Node'u Yeniden Başlatma

sudo systemctl restart suid

Node'u Durdurma

sudo systemctl stop suid

About

Sui Devnet Fullnode Türkçe Kurulum Rehberi

Resources

License

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Rust 78.3%
  • TypeScript 18.7%
  • SCSS 1.4%
  • CSS 0.8%
  • JavaScript 0.3%
  • Python 0.1%
  • Other 0.4%