BackEnd★★★/Docker도커&Cloud기타
-
20 System Design ConceptsBackEnd★★★/Docker도커&Cloud기타 2023. 7. 1. 17:23
https://youtu.be/i53Gi_K3o7I
-
오픈소스 모니터링 툴 Zabbix(자빅스) 구축하기. (1)BackEnd★★★/Docker도커&Cloud기타 2023. 7. 1. 07:41
https://blog.dalso.org/home-server/monitoring-server/3571 오픈소스 모니터링 툴 Zabbix(자빅스) 구축하기. (1) - 달소씨의 하루 https://www.zabbix.com/ 이전에 모니터링 시스템을 위한 ELK 스택을 구축해서 운영중이였는데..운영하다보니 꽤나 제약사항이 많아 더 대중화되고 많은곳에서 이용중인 Zabbix 서버를 구축해보고자 한 blog.dalso.org
-
🐧 리눅스 사용자/그룹 계정 관리 명령어 💯 총정리BackEnd★★★/Docker도커&Cloud기타 2023. 7. 1. 07:36
https://inpa.tistory.com/entry/LINUX-%F0%9F%93%9A-%EC%82%AC%EC%9A%A9%EC%9E%90-%EA%B3%84%EC%A0%95-%EA%B4%80%EB%A6%AC-%EB%AA%85%EB%A0%B9%EC%96%B4-%F0%9F%92%AF-%EC%A0%95%EB%A6%AC 🐧 리눅스 사용자/그룹 계정 관리 명령어 💯 총정리 리눅스 계정 종류 사용자 분류 루트 계정 : 모든 권한을 가진 특별한 사용자 시스템 계정 : 리눅스 설치시 기본으로 생성되는 계정 사용자 계정 : 실제 리눅스 사용자를 위한 계정 리눅스에서는 inpa.tistory.com
-
리눅스리눅스 사용자 목록 확인 (Linux User List)BackEnd★★★/Docker도커&Cloud기타 2023. 7. 1. 07:34
https://overcode.tistory.com/entry/%EB%A6%AC%EB%88%85%EC%8A%A4-%EC%82%AC%EC%9A%A9%EC%9E%90-%EB%AA%A9%EB%A1%9D-%ED%99%95%EC%9D%B8-Linux-User-List 리눅스 사용자 목록 확인 (Linux User List) 전체 목록 확인 cat /etc/passwd 전체를 다 확인 할 수 있다. cut -f1 -d: /etc/passwd 아이디만 짤라서 보여준다. USERADD 를 통해 등록된 계정만 보기 grep /bin/bash /etc/passwd grep /bin/bash /etc/passwd | cut -f1 -d: 이거 overcode.tistory.com
-
The 10 Best Free Linux Firewall ToolsBackEnd★★★/Docker도커&Cloud기타 2023. 7. 1. 07:29
https://www.makeuseof.com/best-free-firewall-linux/ The 10 Best Free Linux Firewall Tools For those who are serious about their network security, knowing which Linux firewall apps and solutions are available for free is crucial. www.makeuseof.com
-
How to Build a Basic HTTP Web Server in RustBackEnd★★★/Docker도커&Cloud기타 2023. 7. 1. 07:18
How to Build a Basic HTTP Web Server in Rust https://www.makeuseof.com/build-http-web-server-in-rust/ How to Build a Basic HTTP Web Server in RustLearn how to build a custom HTTP web server using either Rust's Actix or Rocket package.www.makeuseof.com https://ynzu-dev.tistory.com/entry/Linux-%EB%B0%A9%ED%99%94%EB%B2%BD-%EC%84%A4%EC%A0%95%ED%95%98%EA%B8%B0-%ED%8A%B9%EC%A0%95-%ED%8F%AC%ED%8A%B8-%E..