(Let’s Encrypt config directory change)
(Let’s Encrypt certificate directory change)
(/etc/letsencrypt change)



* --config-dir 옵션으로 키파일 위치 변경 가능

$ certbot-auto certonly --webroot --webroot-path=/var/www --config-dir /변경할/디렉토리 -d 도메인 -d 추가도메인


* 인증서 생성시 --config-dir 옵션을 사용해서 설정 디렉토리를 변경한 경우, 이후 certbot-auto 관련 명령시 --config-dir 옵션 추가 필요
$ certbot-auto renew --config-dir /설정한/디렉토리



참고: https://letsencrypt.readthedocs.io/en/latest/using.html#lock-files


- Ubuntu 12.04 기준


사전 확인

  • 과정 중 root 계정 필요
  • 마운트하려는 서버에서 lshw -C network 실행시 eth1 항목이 확인되지 않는다면 uCloud 콘솔에서 CIP 연결 필요함


eth1 interface 추가

$ su

$ vi /etc/network/interfaces
- 아래 내용 추가
auto eth1
iface eth1 inet dhcp

  • 적용

$ service networking restart

$ ifconfig
- eth1 인식 확인


Mount

  • 관련 패키지 설치

$ apt-get update

$ apt-get install nfs-common

  • NAS 볼륨 확인
$ showmount -e 10.xx.xx.xx

  • 대상 디렉토리 생성 후 mount

$ mkdir /대상디렉토리

$ mount -t nfs 10.xx.xx.xx:/볼륨명 /대상디렉토리
$ df -h
- 마운트 확인

  • reboot시에도 마운트 되도록 설정

$ vi /etc/fstab

- 아래 내용 추가
10.xx.xx.xx:/볼륨명       /대상디렉토리    nfs     ru      0       0

  • /etc/fstab 설정 오류 확인

$ mount -a

 

- 오류가 있을 경우에만 해당 사항 출력




참고: https://ucloudbiz.olleh.com/portal/portal.portalinfo.html


====================
Hshare Install
CentOS 6.9
====================

su
yum update -y

## build-essential
yum groupinstall 'Development Tools'


------------
# OpenSSL ECC
------------
## openssl elliptic curve cryptography
cd /usr/local/src/
wget https://www.openssl.org/source/openssl-1.0.2m.tar.gz
tar -zxf openssl-1.0.2m.tar.gz
cd openssl-1.0.2m
./config --prefix=/usr --openssldir=/usr/local/openssl shared
make
make test
make install

## check
openssl version
- (OpenSSL 1.0.2m)
openssl ecparam -list_curves
- (include secp256k1)


------------
# Dependencies
------------
## ld -lz
yum install zlib-devel -y
## Berkeley DB
// yum install db4-devel -y (include zlib)
## Boost
yum install boost-devel -y

## qrencode, miniupnpc
rpm -ivh ftp://195.220.108.108/linux/dag/redhat/el6/en/x86_64/dag/RPMS/rpmforge-release-0.5.3-1.el6.rf.x86_64.rpm
yum install qrencode-devel -y
yum install miniupnpc-devel -y


------------
# Build
------------
cd /usr/local/src/
git clone https://github.com/HcashOrg/Hshare.git hshare
cd hshare/src/

## nano makefile.unix 수정
nano makefile.unix
   기존: -l boost_thread$(BOOST_LIB_SUFFIX) \
   수정: -l boost_thread-mt$(BOOST_LIB_SUFFIX) \
make -f makefile.unix




# Public Node
addnode=52.193.215.1
addnode=119.254.102.218
addnode=139.198.188.182
addnode=124.42.118.99
addnode=121.201.24.167
addnode=209.9.107.116
addnode=13.56.173.122
addnode=54.79.47.132
addnode=13.54.61.175
addnode=34.203.15.31
addnode=52.59.144.109
addnode=35.177.31.30
addnode=52.220.111.66
addnode=13.114.115.237
addnode=13.126.121.197
addnode=35.182.200.22
addnode=54.233.180.109
addnode=52.64.238.215




1. httpd.conf

1) rewrite_module 활성화
#LoadModule rewrite_module modules/mod_rewrite.so
라인 주석 해제
 
2) .htaccess 사용을 위해 AllowOverride 옵션을 All로 변경
#AllowOverride None
AllowOverride All

- 수정 후 Apache 재시작



2. 루트 폴더에 .htaccess 파일 생성

<IfModule mod_rewrite.c>
      RewriteEngine On
      RewriteBase /
      RewriteCond $1 !^(index\.php|images|robots\.txt) # 처리를 제외할 파일이나 디렉토리를 추가
      RewriteCond %{REQUEST_FILENAME} !-f
      RewriteCond %{REQUEST_FILENAME} !-d
      RewriteRule ^(.*)$ /index.php/$1 [L]
</IfModule>




3. CI config.php 수정


- index_page 수정
//$config['index_page'] = 'index.php';
$config['index_page'] = '';



Tomcat catalina.out daily logrotate



1. logrotate 설정 디렉토리로 이동
$ cd /etc/logrotate.d/


2. 설정 파일 생성
$ nano tomcat

/var/local/tomcat/logs/catalina.out {
     copytruncate
     daily
     rotate 30
     missingok
     notifempty
     dateext
}


3. (선택) 현재 파일 강제 갱신
$ logrotate -f /etc/logrotate.d/tomcat




설정 파일 참고 :
http://linuxcommand.org/man_pages/logrotate8.html




+ Recent posts