Redis 테스트를 위한 자동 설치
redis 서버를 버전별로 설치해서 테스트해야할 경우가 있다.실행을 위한 정리를 해봤다.레디스 파일은 https://download.redis.io/releases/ 에서 다운로드 할 수 있다.아래에서 REDISVER에 버전 변경후 전체복사해서 쉘에 붙여넣기하면 redis 구동까지 된다.기본 폴더는 /sw 이다.REDISVER 변수에…
redis 서버를 버전별로 설치해서 테스트해야할 경우가 있다.실행을 위한 정리를 해봤다.레디스 파일은 https://download.redis.io/releases/ 에서 다운로드 할 수 있다.아래에서 REDISVER에 버전 변경후 전체복사해서 쉘에 붙여넣기하면 redis 구동까지 된다.기본 폴더는 /sw 이다.REDISVER 변수에…
AWS 온프레미스 리눅스에 nmon 설치하기. https://sourceforge.net/projects/nmon/files 에서 nmon 설치파일을 찾아서 설치하면 됨. wget https://sourceforge.net/projects/nmon/files/nmon16g_x86.tar.gz tar zxvf nmon16g_x86.tar.gz # 압축을 해제하면 nmon 파일들이 나옴, 실행가능하도록 적용해서 실행되는 nmon 파일 사용하면 됨.…
패키지 설치# centosyum install iftop# ubuntuapt-get install iftop # 소스 설치wget http://www.ex-parrot.com/pdw/iftop/download/iftop-0.17.tar.gztar -zxvf iftop-0.17.tar.gzcd iftop-0.17./configuremakemake install # 실행iftopiftop -i eth0
워드프레스를 설치하면 외부에서 로그인 및 관리자 요청 공격이 계속 들어옴.자기 허용 IP에 대해서만 열어 놓는게 좋음. Haproxy에서 의 URL 차단 및 허용 설정 backend www mode http #허용할 IP 설정…
서비스 상태sudo /opt/bitnami/ctlscript.sh status 서비스 구동sudo /opt/bitnami/ctlscript.sh startsudo /opt/bitnami/ctlscript.sh stopsudo /opt/bitnami/ctlscript.sh restart apache 만 재 구동sudo /opt/bitnami/ctlscript.sh restart apache
Microserver Gen8 에 ESXi 설치 사용시 Disk 속도가 나지 않는경우 아래와 같이 한다고 함. scsi-hpvsa-5.5.0-88OEM.550.0.0.1331820.x86_64.vib 다운로드https://support.hpe.com/hpesc/public/swd/detail?swItemId=MTX_bfdbb1dfc5314e02bc01b1436b 이전 scsi-hpvsa 드라이버를 삭제하고 5.5.0-88버전을 설치한 뒤 재부팅한다. [root@localhost:~] esxcli system maintenanceMode set --enable…
인증서 확인 openssl x509 -in cert.pem -noout -text openssl x509 -in cert.pem -noout -enddate 서버에 접속해서 인증서 만료날짜 확인 openssl s_client -connect www.daum.net:443 -state -nbio 2> /dev/null | openssl x509…
[root@linux ~] wget https://github.com/SoftEtherVPN/SoftEtherVPN_Stable/releases/download/v4.38-9760-rtm/softether-vpnserver-v4.38-9760-rtm-2021.08.17-linux-arm_eabi-32bit.tar.gz [root@linux ~] tar zxvf softether-vpnserver-v4.38-9760-rtm-2021.08.17-linux-arm_eabi-32bit.tar.gz [root@linux ~] cd vpnserver [root@linux ~] make [root@linux ~] cd .. [root@linux ~] mv vpnserver /sw ------------------------------------------------------------ 서비스 등록 ------------------------------------------------------------ [root@linux…
docker 설치yum -y install docker docker-registrydocker 서비스 설정systemctl enable docker.servicesystemctl start docker.service 상태확인systemctl status docker.service
Step 1 — Install JDK Step 2 — Creating an ‘Artemis’ User and Group$ sudo groupadd artemis$ sudo useradd -s /bin/false -g artemis -d /opt/artemis artemis Step 3 — Download…