본문 바로가기

전체 글19

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.
[Linux] InfluxDB #Install https://www.influxdata.com/downloads/ InfluxData Downloads Register your download Get access to the new InfluxDB Open Source Software Onboarding Guide, product updates, and free InfluxDB stickers! www.influxdata.com # Ubuntu & Debian (ARM 64-Bit) 기준 # influxdata-archive_compat.key GPG fingerprint: # 9D53 9D90 D332 8DC7 D6C8 D3B9 D8FF 8E1F 7DF8 B07E wget -q https://repos.influxdata.com/i.. 2024. 1. 21.
web gz 압축 AyncElegantOTA 라이브러리는 '우아한' 인터페이스를 사용하여 프로젝트에 WebOTA를 쉽게 추가할 수 있는 방법입니다. 페이스북의 최근 토론은 'AsyncElegantOTA를 어떻게 수정할 수 있습니까?'에 관한 것이었습니다. 물론 JavaScript 및/또는 HTML에 대해 알고 있다면 그렇게 어렵지는 않지만 라이브러리 파일에 뛰어든 사람은 곧 많은 부분이 암호화된 것처럼 보이는 것을 알게 될 것입니다. , 그러나 걸릴 수 있습니다. 왜 AsyncElegantOTA 라이브러리를 변경하고 싶은지, 기본 ESP8266HTTPUpdateServer 라이브러리를 사용하고 원하는 대로 수정하면 안 되는 이유를 스스로에게 물어보는 것은 가치가 있습니다. 암호화된 파일을 해독할 필요가 없습니다. C:\U.. 2023. 1. 15.