DEV
-
Node js X-API-KEY 생성기 (발급)DEV/javascript 2024. 6. 10. 13:59
사실 API-KEY를 랜덤하게 생성해주는 웹 사이트도 많다. 아무거나 사용해도 무관하다. const crypto = require('crypto');// 무작위 api-key 발급function generateApiKey() { return crypto.randomBytes(32).toString('hex'); }const apiKey = generateApiKey();console.log(`Generated API Key: ${apiKey}`); 위 코드로 발급하여 사용 가능 사용 예시// Request 예시const url = ${API_TARGET_URL};const options = { method: 'POST', headers: { 'Content-Type': 'application/j..
-
Linux (Ubuntu) ssh 설치 / ssh 접속DEV/other things 2024. 6. 8. 20:48
우분투 설정// apt 업데이트 및 ssh 설치sudo apt updatesudo apt install openssh-server// 설치 후 상태 확인sudo systemctl status ssh// ssh 실행sudo systemctl enable sshsudo systemctl start ssh// 방화벽 확인sudo ufw status// 방화벽 활성화 - 비활성화 : sudo ufw disablesudo ufw enablesudo ufw allow ssh// tcp/udp 허용 - 비허용 : sudo ufw deny 22sudo ufw allow 22// *systemctl이 사용 불가한 경우 "sudo service 를 사용// 명령어 - start, stop, restart, status ..