우분투 : ubuntu-15.04-desktop-amd64.iso

 

apt-get  update 오류

cd /etc/apt/

vi socurce.list

내용 다 지운 후

#+ Ubuntu Main Repos

deb http://01.archive.ubuntu.com/ubuntu/ trusty main restricted universe multiverse 

deb-src http://01.archive.ubuntu.com/ubuntu/ trusty main restricted universe multiverse 


#+ Ubuntu Update Repos

deb http://01.archive.ubuntu.com/ubuntu/ trusty-security main restricted universe multiverse 

deb http://01.archive.ubuntu.com/ubuntu/ trusty-updates main restricted universe multiverse 

deb http://01.archive.ubuntu.com/ubuntu/ trusty-proposed main restricted universe multiverse 

deb http://01.archive.ubuntu.com/ubuntu/ trusty-backports main restricted universe multiverse 

deb-src http://01.archive.ubuntu.com/ubuntu/ trusty-security main restricted universe multiverse 

deb-src http://01.archive.ubuntu.com/ubuntu/ trusty-updates main restricted universe multiverse 

deb-src http://01.archive.ubuntu.com/ubuntu/ trusty-proposed main restricted universe multiverse 

deb-src http://01.archive.ubuntu.com/ubuntu/ trusty-backports main restricted universe multiverse 

 

재실행 apt-get  update

SSH 서버 구축

 

openssh-server 설치시 오류

apt-get install openssh

The following packages have unmet dependencies:
 openssh-server : Depends: openssh-client (= 1:6.6p1-2ubuntu2.10)
                  Recommends: ssh-import-id but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

업데이트

apt-get update && sudo apt-get upgrade -y && sudo apt-get install -f && sudo apt-get install openssh-server -y

 

openssh-client설치

apt-get install openssh-client=1:6.6p1-2ubuntu1

 

다시

apt-get install openssh

 

openssh 실행

service ssh start

 

 

 

 

'블록체인' 카테고리의 다른 글

암호화폐 안동찜닭 평행이론  (0) 2018.09.10
비트고 bitgo multisig  (1) 2018.09.07
멀티 시그 Ethereum Multi-Signature Wallets  (0) 2018.08.20
ubuntu16 EOS 노드 설치  (0) 2018.06.26
Cent OS7 EOS 노드 설치  (0) 2018.06.15
블로그 이미지

iesay

,

용도는 어디에 쓰냐면 홈페이지에 방문자가

문의한 내용을 메일로 받을때 사용한다.

 

출처 : https://github.com/PHPMailer/PHPMailer

 

예전 신입시절 telnet으로 메일 보내기 했는데

지금은 메일서버 구축 따로 없이 구글로 메일을 보내 보았다.

깃허브 소스는 다  깃 클론으로 다운로드 받아 주고,

 

경로만 잘 맞춰주면 잘 작동한다.

 

1] PHP Malier 경로

use PHPMailer\PHPMailer\PHPMailer;

use PHPMailer\PHPMailer\Exception;

require_once('./PHPMailer/src/Exception.php');

require_once('./PHPMailer/src/PHPMailer.php');

require_once('./PHPMailer/src/SMTP.php');

 

 

2] 구글에서 만들어준 앱용 패스워드

  https://security.google.com/settings/security/apppasswords

 

 

이 두가지만 고려 하면 딱히 구축하는데 크게 어려움은 없다.

 

'' 카테고리의 다른 글

DB에 웹쉘코드 삽입 POC  (0) 2018.12.06
워드프레스 서버 이관  (0) 2018.09.03
리눅스 서버 이관 작업  (0) 2017.10.26
WeB 서버 튜닝  (0) 2015.12.04
취약점 점검과 모의침투 차이  (0) 2015.11.13
블로그 이미지

iesay

,

출처 :  https://medium.com/hellogold/ethereum-multi-signature-wallets-77ab926ab63b

 

 

멀티 시그 Ethereum Multi-Signature Wallets

열심히 참고해서 삽질해서 포스팅 하겠습니다!!

 

 

'블록체인' 카테고리의 다른 글

비트고 bitgo multisig  (1) 2018.09.07
비트코인 BTC 노드구성(ubuntu-15.04-desktop-amd64)  (0) 2018.08.23
ubuntu16 EOS 노드 설치  (0) 2018.06.26
Cent OS7 EOS 노드 설치  (0) 2018.06.15
퀀텀 노드 구성  (0) 2018.06.05
블로그 이미지

iesay

,