TIP24 깃헙 기본 브릿지 바꾸기 참고 : https://docs.github.com/ko/repositories/configuring-branches-and-merges-in-your-repository/managing-branches-in-your-repository/changing-the-default-branch 2025. 2. 12. 터미널로 gitHub 커밋하기 GitHub에서 새로운 레포지토리 생성 Git 저장소 초기화: git init GitHub 원격 저장소 연결 git remote add origin https://github.com/사용자명/my-first-repo.git확인 git remote -v 모든파일 git커밋 git add . 커밋메시지 작성 git commit -m "Initial commit" 코드 푸시 브런치이동 git branch -M main 코드올리기 git push -u origin main 변경 사항 커밋 후 푸시 git add . git commit -m "Update index.js" git push origin main 2025. 2. 12. 대용량 트레픽 처리 - 로드 밸런싱 개념 정리 🚀 사용자가 늘어나면, 서버는 어떻게 확장할까?서비스 운영 중 서버는 몇 대가 필요할까?✅ 사용자가 적다면 1대의 서버로도 충분하지만,✅ 사용자가 증가하면 서버의 부하가 커지고, 심하면 서버가 다운될 수도 있다.이럴 때 "스케일 업(Scale-Up)" 또는 "스케일 아웃(Scale-Out)"을 통해 서버를 확장해야 한다.🏗️ 서버 확장 방법1️⃣ 스케일 업 (Scale-Up)✔ 현재 서버의 성능을 업그레이드하는 방법✔ CPU, 메모리, 디스크 추가하여 처리 능력 향상✔ (수직 확장, Vertical Scaling) 2️⃣ 스케일 아웃 (Scale-Out)✔ 서버 개수를 늘려 부하를 분산하는 방법✔ 여러 대의 서버가 동일한 요청을 처리✔ (수평 확장, Horizontal Scaling)💡 스케일 아웃.. 2025. 2. 5. mysql 비번 바꾸기(cmd창) 비번 바꾸기 설치 위치로 이동하기cd C:\Program Files\MySQL\MySQL Server 8.4\bin로그인mysql -u root -p기존 비밀번호 입력해서 로그인하기비번 변경 ALTER USER 'root'@'localhost' IDENTIFIED WITH caching_sha2_password BY '새비번';적용하기 FLUSH PRIVILEGES;결과 mysql> ALTER USER 'root'@'localhost' IDENTIFIED WITH caching_sha2_password BY 'aaaa1234';Query OK, 0 rows affected (0.01 sec)mysql> FLUSH PRIVILEGES;Query OK, 0 rows affected (0.00 sec) 2025. 1. 23. 로케일 코드 (Locale code) - 특정 언어 및 지역을 나타내는 표준 'en-US'와 같은 로케일 코드는 IETF BCP 47 언어 태그를 따릅니다.https://en.wikipedia.org/wiki/IETF_language_tag IETF language tag - WikipediaFrom Wikipedia, the free encyclopedia Code to identify human languages An IETF BCP 47 language tag is a standardized code that is used to identify human languages on the Internet.[1] The tag structure has been standardized by the Internet Engineering Tasken.wikipedia.org전체 로케일.. 2025. 1. 11. 브라우저(크롬)에서 토큰 확인하기 토큰 확인로그인(토큰 발급받기) -> F12 -> Application>Cookies쿠키는 자동 저장됨. 해더에서 사용 가능 2024. 12. 29. 이전 1 2 3 4 다음