라벨이 CentOS인 게시물 표시

Kraken api - get token with python

Kraken api - get token with python an example of how you can generate a WebSocket authentication token using Python for Kraken's API: ```python import time import base64 import hashlib import hmac import urllib.request import json # Replace with your Kraken API public and private keys api_key = 'YOUR_API_PUBLIC_KEY' api_secret = 'YOUR_API_PRIVATE_KEY' # API endpoint and parameters api_path = '/0/private/GetWebSocketsToken' api_nonce = str(int(time.time() * 1000)) api_post = 'nonce=' + api_nonce # Create the SHA256 hash api_sha256 = hashlib.sha256(api_nonce.encode('utf-8') + api_post.encode('utf-8')).digest() # Create the HMAC signature api_hmac = hmac.new(base64.b64decode(api_secret), api_path.encode('utf-8') + api_sha256, hashlib.sha512) api_signature = base64.b64encode(api_hmac.digest()) # Create the request api_request = urllib.request.Request('https://api.kraken.com' + api_path, api_post.encode('utf-8')) ap

Linux - Rsyncd install - Centos8

  Linux - Rsyncd install - Centos8   1. 설치 yum install rsync rsync-daemon -y yum install rsync rsync-daemon -y   2. 환경 설정 [root@node1 svc]# vi /etc/rsyncd.conf # /etc/rsyncd.conf uid = 1000 gid = 1000 max connections = 20 timeout 600 hosts allow = 192.168.56.0/24 [SRCS] path = /svc/srcs comment = System Install Source Pub use chroot = yes read only = yes [WEB_APP] comment = WEB SERVICE SRC path = /svc/web_app use chroot = yes read only = no   3. rsyncd 기동 # Rsync  상태 확인 한다     systemctl status rsyncd # Rsync 상태 확인 [root@node1 svc]# systemctl status rsyncd rsyncd.service - fast remote file copy program daemon Loaded: loaded (/usr/lib/systemd/system/rsyncd.service; disabled; vendor preset: disabled) Active: inactive (dead)   # Rsync  자동 실행 설정# Rsync를 시스템 시작시 자동 실행하도록 설정한다.      # systemctl enable rsyncd   # Rsync를 시스템 시작시 자동 실행하도록 설정한다. [root@node1 svc]# systemctl enable rsyncd Created symlink /etc/systemd/system/multi-user.target.wants/rsyncd.service → /usr/lib/

(CentOS대체)How to Migrate to Rocky Linux from CentOS Stream, CentOS, RHEL

이미지
   Centos 대체 로키리눅스 CentOS 8에서 로키리눅스(Rocky Linux)로 마이그레이션 업데이트   CentOS 가 Redhat으로 인수되어 2021년 이후 더 이상 오픈소스의 가치를 제공하지 못하게 되면서 CentOS를 이용하던 기업들은 상용 혹은 대체 리눅스를 찾아 변환을 하고 있습니다. Rocky Linux는 CentOs와 마찬가지로   리눅스의 안정화된 패키지를 상용화한 (RHEL)을 재패키징하여 배포하는  Redhat 리눅스와 마찬 가지로  엔터프라이즈 리눅스 입니다. 일반 기업들도 무료로 쓸 수 있는 CentOs 대체용  엔터프라이즈 리눅스라고 할 수 있습니다.   저도 오래된 CentOs 리눅스를 로키 리눅스(Rocky Linux) 로 업그레이드 해 보았습니다.  rocky 리눅스로 패키지 업데이트 할 때  오류가 있어서 내용을 보완 했으니 참조해서 사용하면 좋겠습니다.      Rocky Linux is Red Hat Enterprise Linux (Open Source Linux) Rocky Linux는 Red Hat Enterprise Linux 8.5와 100% 호환되는 커뮤니티 엔터프라이즈 운영 체제입니다.  따라서 2021년 12월 말까지 단종되는 CentOS 8의 완벽한 대안이 됩니다. Rocky Linux 8.5가 출시되면서 CentOS 8에서 Rocky Linux로 마이그레이션하는 데 도움이 되는 변환 도구를 사용할 수 있게 되었습니다. 새로 설치하지 않고 Rocky Linux 8을 테스트하려는 사용자에게 편리합니다. 록키리눅스를 설치하려면 홈페이지에서 Minimal, DVD 및 Boot ISO 이미지로 제공되는 Rocky Linux 8.5를 다운로드하십시오.     How to Migrate to Rocky Linux from CentOS Stream, CentOS,  RHEL or Oracle Linux https://rockylinux.org/ko/ 1.  Using dnf update : Update the p

이 블로그의 인기 게시물

SSL/TLS 인증서 오류를 해결- 리눅스명령모음 - SSL certificate problem

(truffle 환경 설정) 스마트 계약 배포 와 truffle deploy 오류 해결 - Error: Could not find artifacts for SimpleStorage from any sources

자기주권 신원 (SSI Self-Sovereign Identity) 인증의 발전 그리고 정보 민주화 (Information Democratization)