OpenSSL 사용법 정리
인증서 확인 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…
인증서 확인 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…
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…
openssl s_client -connect daum.net:443 -state -nbio 2> /dev/null | openssl x509 -noout -dates
OpenSSL을 사용하여 변환 openssl pkcs12 -export -in fullchain.pem -inkey privkey.pem -out keystore.p12 -name tomcat -CAfile chain.pem -caname root
#nodejs 웹 소스 ubuntu 배포 -. nodejs 설치 sudo apt-get install nodejsnodejs -v #버전확인-. npm 설치sudo apt-get install npm-. 배포npm install -g serve # serve 패키지 설치 serve -s dist…
centos 방화벽 설정 -. iptables 리스트 보기iptables -nL -. 편집vi /etc/sysconfig/iptables or 바로반영 iptables -A INPUT -p tcp --dport 80 -j ACCEPT#저장/sbin/service iptables save -. 재시작/etc/init.d/iptables restart
리눅스를 사용하다보면 물리 메모리가 캐쉬로 전부 전환되어 있는 경우가 있다 이를 해제하려면 다음과 같은 명령어로 해결. -. pagecache 해제 echo 1 > /proc/sys/vm/drop_caches -. dentries, inodes 해제 echo 2 >…
[root@SCALIM2 security]# pwd /etc/security [root@SCALIM2 security]# cat limits.conf # /etc/security/limits.conf # #Each line describes a limit for a user in the form: # #<domain> <type> <item> <value> # #Where: #<domain>…
-. key 파일 생성#openssl genrsa -out tomcat.key 2048 -. csr파일 생성 파일 생성#openssl req -new -x509 -key tomcat.key -out tomcat.csr -days 7300 -. p12 생성#openssl pkcs12 -export -in tomcat.csr -inkey…