라벨이 ssh인 게시물 표시

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

How to Start WSL2 : ssh 설치와 접속하기

이미지
  How to Start WSL2 : ssh 설치와 접속하기 Windows Subsystem for Linux(WSL)은 Microsoft가 개발한 Windows 운영 체제에  사용자가 Windows와 Linux를 동시에 실행할 수 있게 해주는 환경을 제공합니다. WSL사용법- How To Start WSL 1. Windows Subsystem for Linux (WSL) 설치와 사용법   2. 알면 좋은 WSL 기본 명령 사용법   3. WSL 설치 디렉토리 경로 변경 4. WSL ssh 설치와 접속 하기 wsl을 PowerShell을 이용하여 리눅스를 사용하기 보다 ssh를 이용해서 여러개의 ssh 터미널을 열어서 사용하는 방법을 알아 봅니다. How to Start WSL2 : ssh 설정과 접속 1.. WSL 명령으로 linux를  설치합니다. wsl --install  -d Ubuntu-22.04 2. ssh 패키지 설치    - Powershell을 이용하여 리눅스 터미널로 접속하여  apt 명령으로 sshd 관련 패키지를 설치 할 수 있습니다. sudo apt update sudo apt install openssh-server or apt-get install ssh oenssh-server --fix-missing apt update를 실행 하지 않으면 일부 패키지 버전이 맞지 않을 경우 설치가 되지 않는 경우가 있습니다. Unable to fetch some archives, maybe run apt-get update or try with --fix-missing? 일부 패키지 업데이트가 필요한 경우가 아니면  --fix-missing 을 이용하여 강제 설치를 해도 됩니다.   apt 또는 apt-get 은  Ubuntu 리눅스의 패키지를 다운 받아 설치하는 명령입니다. 네트웍으로 외부의 패키지 저장소에서 필요한 패키지를 다운받아 설치를 할 수 있습니다. 3. 설치된 ssh 패키지를 확인합니다. root@DESKTOP-RTQU492:~

이 블로그의 인기 게시물

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

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

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