본문 바로가기
Linux - USB Device 접근권한 영구변경 보호되어 있는 글 입니다. 2024. 3. 14.
Nginx SSL 보안 인증서 갱신 Nginx 설치와 도메인은 이미 연결되있다고 가정 sudo add-apt-repository ppa:certbot/certbot sudo apt install python-certbot-nginx /* -d 구입한 도메인 */ sudo certbot --nginx -d test.co.kr -d www.test.co.kr Let's Encrypt 는 90일짜리 인증서이기 때문에 마지막 갱신 후 2~3개월 사이에 인증서를 갱신시켜줘야함 - 인증서 갱신 테스트 sudo certbot renew --dry-run - 인증서 갱신 sudo certbot renew - 인증서 만료일 확인 sudo certbot certificates - 인증서 자동 갱신(crontab) /* date로 현재시간 일치여부 확인( U.. 2024. 2. 2.
[Linux] Node-RED, pm2 설치 # 설치 참조링크 https://nodered.org/docs/getting-started/ Getting Started : Node-RED nodered.org # nodejs, node red 설치 (Ubuntu 기준 작성됨) // nodejs 설치 curl -fsSL https://deb.nodesource.com/setup_20.x | sudo -E bash - sudo apt-get install -y nodejs sudo apt-get install -y curl // node js 버전 확인 nodejs -v // npm 버전확인 npm -v // node red 설치 sudo npm install -g --unsafe-perm node-red node red 실행 node-red 접속된 사.. 2024. 1. 21.
[Linux] Grafana 설치 # 설치 https://grafana.com/grafana/download?utm_source=grafana_footer Download Grafana | Grafana Labs Overview of how to download and install different versions of Grafana on different operating systems. grafana.com # Ubuntu & Debian (ARM 64-Bit) 기준 sudo apt-get install -y adduser libfontconfig1 musl wget https://dl.grafana.com/enterprise/release/grafana-enterprise_10.2.3_arm64.deb sudo dpkg -i gr.. 2024. 1. 21.