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
공유 링크 만들기
Facebook
Twitter
Pinterest
이메일
기타 앱
Linux - Rsyncd install - Centos8
공유 링크 만들기
Facebook
Twitter
Pinterest
이메일
기타 앱
-
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/systemd/system/rsyncd.service.
# Rsyncd 를 실행한다. systemctl start rsyncd
[root@node1 svc]# systemctl start rsyncd
# Rsyncd 를 실행 상태를 확인한다. systemctl status rsyncd
[root@node1 svc]# systemctl status rsyncd
rsyncd.service - fast remote file copy program daemon
Loaded: loaded (/usr/lib/systemd/system/rsyncd.service; enabled; vendor preset: disabled)
Active: active (running) since Sun 2020-02-23 05:38:23 EST; 5s ago
Main PID: 7226 (rsync)
Tasks: 1 (limit: 17979)
Memory: 296.0K
CGroup: /system.slice/rsyncd.service
mq7226 /usr/bin/rsync --daemon --no-detach
Feb 23 05:38:23 node1.im.com systemd[1]: Started fast remote file copy program daemon.
Feb 23 05:38:23 node1.im.com rsyncd[7226]: params.c:Parameter() - Ignoring badly formed line in con>
Feb 23 05:38:23 node1.im.com rsyncd[7226]: rsyncd version 3.1.3 starting, listening on port 873
# 중지와 실행으로 작동 상태를 점검한다.
# 중지 명령을 실행
[root@node1 svc]# systemctl stop rsyncd
# 실행 명령을 실행
[root@node1 svc]# systemctl start rsyncd
SSL/TLS 인증서 오류를 무시하는 linux 명령모음 - SSL certificate problem 외부 파일을 받거나 HTTPS로 통신을 점검하는 동안 SSL certificate problem 이 발생 하는 경우 대처하는 법입니다. # 개발 하면서 많이 사용하는 어플리케이션 패키지를 다운 받을때 SSL 인증서 오류 해결 방법을 정리 합니다. 1. curl 2. wget 3. git 4. pip 4. npm 1. curl - curl은 커멘드라인으로 HTTP, HTTPS, FTP, FTPS, SCP, SFTP 등으로 웹서비스를 호출하고 응답을 받을수 있습니다. 방법 1 # curl 명령에 대한 인증서 확인을 비활성화합니다. curl --insecure -I https: //www.some.com/ curl -k -O https: //www.some.com/file.tar.gz 방법 2 # vi $HOME/.curlrc # .curlrc 파일에 다음 내용을 추가 합니다. insecure 2. wget - wget은 인터넷 웹서비스 호출의 결과나 파일을 다운 받는데 사용합니다. --no-check-certificate 를 이용하여 SSL 인증서 문제를 해결 할 수 있습니다. wget --no-check-certificate https: //bootstrap.pypa.io/get-pip.py 3. git - git은 소스 코드를 관리하고 변경 사항을 추적하는 분산 버전 관리 시스템(VCS)입니다. 방법 1. 환경 변수 설정 env GIT_SSL_NO_VERIFY= true git clone https: //some.git.com/file.git * 위의 환경 변수를 시스템 환경 변수로 설정해 두는 경우입니다. 방법 2. git 명령 옵션 * git 명령을 실행 옵션으로 "http.sslVerify false" 를 추가 하는 방법입니다. # 다음 명령으로 git 환경을 설
(truffle 환경 설정) 스마트 계약 배포 와 truffle deploy 오류 해결 - Error: Could not find artifacts for SimpleStorage from any sources 간단한 오류의 원인은 truffle 환경의 contracts 소스의 위치를 확인하여야 하는 경우 입니다. 처음 truffle을 사용하다보니 환경 설정의 묵시적인 설정을 잘 이해하지 못한 경우 발생하는 오류 입니다. Truffle 설치 와 스마트 계약(Smart Contract) 개발 1. Truffle 설치 - 스마트 계약 개발 환경 구성 (truffle, ganache-cli, solc ) - npm install -g truffle - npm install -g ganache-cli - npm install -g solc 2. Truffle 사용 - 스마트 계약(Smart Contract)개발 - truffle create contract YourContractName - truffle create test YourTestName 3. [Truffle 환경 설정] 컴파일 오류 대처 - Error: Failed to fetch the Solidity compiler from the following locations: - Are you connected to the internet? 4. [Truffle 환경 설정] Deploy 오류 대처 - Error: Could not find artifacts for SimpleStorage from any sources - throw new Error("Could not find artifacts for " + import_path + " from any sources"); ㅁ Truffle 명령을 이용한 스마트 계약 개발과 배포 # Truffle을 이용하여 스마트 컨트렉트를 이용하는 명령은 다음과 같습니다. $
자기주권 신원 (SSI Self-Sovereign Identity) 인증의 발전 그리고 정보 민주화 (Information Democratization) 최근의 마이데이터(My-Data), STO (Security Token), Password-less Authentication , FIDO, 긱 경제 , 프로토콜 경제 등의 정보 민주화에 대한 생각이 나서 정리해 보았습니다. 앞으로 인공지능과 같은 서비스들이 활성화 되기 위해서는 개인정보 없이도 정보 분석이 가능하고, 정보의 소유 주체에서 개인화가 필요하다고 생각합니다. 이유는 많겠지만 예를 들어 독자 여러분의 사진을 딥페이킹을 해서 해외 금융 계좌를 개설하거나, 음성 정보를 이용해서 가상 인간을 만든다면 세상을 어떻게 될까요 ? 넷플릭스의 블랙미러라는 시리즈를 보시는 분들도 계실텐테 정보 기술로 인한 인간의 생활이 어떻게 변할수 있는지 아주 극한의 상황들을 보여 주는 드라마 시리즈 입니다. 2023년 최근 "블랙미러 시리즈 중에 : 존은 끔찍해" 를 보셨다면 인공 지능과 결합된 개인 정보의 위험이 어떻게 되는지 상상 이상의 충격을 엿볼 수 있습니다. 주인공이 다니는 인공지능 회사에서 양자 컴퓨팅으로 직원 중에 특정 인물의 일상을 실시간으로 드라마 영상을 제작해서 유튜브에 생중계를 하는데, 실제 인물의 생활을 자극적인 내용으로 왜곡해서 방송하여 그 사람의 인생을 완전히 망가 뜨리는 내용 입니다. 주인공은 항의를 하지만 그것에 대한 통제가 불가능 하다는 것이고 ... 등등 ... 드라마는 앞으로 컴퓨팅의 기술이 발전 할 수록 우리가 상상하는 그 이상의 정보 변조가 가능 하다는 것이고 정보에 대한 자기 주체로서 역할을 할 수 없는 것에 대한 경고를 보여주는 영화 였습니다. 이런 드라마의 사례가 아니더라도 현재 개인의 정보를 관리 주체인 플랫폼 사업자 중심의 개인 정보 관리 방식은 점진적으로 정보 민주화라는 방향으로 변화가 될 필요성이 있다고 강조해 봅니다. 1. DID
댓글
댓글 쓰기