Development/Etc
-
[ETC] 체크포인트, 분산 컴퓨팅, 로드 밸런스, AD, NTP, SLADevelopment/Etc 2023. 8. 19. 15:58
1) 체크포인트 (Checkpoint) 컴퓨터 시스템이나 프로그램에서 실행 중인 상태를 저장하는 지점을 의미합니다. 이를 통해 시스템이 비정상적으로 종료되거나 오류가 발생했을 때, 저장된 체크포인트를 기반으로 복구 작업을 수행할 수 있습니다. 2) 분산 컴퓨팅 분산 시스템에서는 데이터나 프로세스의 상태를 주기적으로 체크포인트로 저장하여 장애 시 복구를 지원합니다. 3) 로드 밸런스(load balancer) - 네트워크 트래픽이나 작업 부하를 여러 대의 서버나 자원으로 분산시켜주는 역할을 하는 장치나 소프트웨어다. 이로써 서버의 성능을 향상시키고 가용성을 높일 수 있다. - 로드 밸런서는 다수의 클라이언트 요청이나 트래픽을 여러 대의 서버로 분산시켜주어, 각 서버의 작업 부하를 균등하게 분배하여 일을 처..
-
[Etc] 오류, 버그, 이슈, 결함 등등 용어 구분Development/Etc 2023. 8. 17. 10:50
A mistake in coding is called Error, error found by tester is called Defect, defect accepted by development team before the product is shipped to the customer then it is called Bug, build does not meet the requirements when a defect reaches the end customer then it Is Failure. Reference https://www.360logica.com/blog/difference-between-defect-error-bug-failure-and-fault/
-
[ASP.NET] 파일 업로드 시 특정 브라우저 에러 발생 (File Upload not working)Development/Etc 2021. 1. 19. 15:06
ASP.NET에서 파일 업로드 코드는 다음과 같다. string filePath = string.Empty; if (Request != null) { HttpPostedFileBase file = Request.Files["pdfFile"]; if ((file != null) && (file.ContentLength > 0) && !string.IsNullOrEmpty(file.FileName)) { fileName = Path.GetFileName(file.FileName); fileNameOnly = Path.GetFileNameWithoutExtension(file.FileName); filePath = Path.Combine(Server.MapPath("~/pdf"), fileName); file..
-
[Window OS] Window에서 Ping, 특정 Port Ping 테스트하기Development/Etc 2020. 10. 16. 14:57
# ping 테스트 방법 CMD창에 아래 명령어 입력한다. ping # 특정 Port ping 테스트 방법 아래 사이트 접속 후 tcping.exe 다운로드 후 설치한다. tcping.exe - ping over a tcp connection tcping.exe - ping over a tcp connection tcping.exe is a console application that operates similarly to 'ping', however it works over a tcp port. There are many different implementions of this floating around, written independently by different people. Ther elifu..
-
[Github] GitHub로 Static Application 호스팅하기(GitHub Pages)Development/Etc 2020. 10. 12. 23:08
🙋♀️ 들어가기 전에 프로젝트를 다 만들었다면 서버에 배포해서 여러 사람들에게 자랑하고싶을 것이다. 만약 당신이 만든 프로젝트가 정적 애플리케이션이라면 GitHub를 사용하면 된다! GitHub는 정적 애플리케이션을 무료로 호스팅할 수 있는 서비스를 제공하고있으며, GitHub 계정 당 하나의 계정 사이트와 무제한 프로젝트 사이트를 제공한다. 🐱 What is Static Application? 정적 애플리케이션(Static Application)은 온라인 서버 또는 데이터베이스에 대한 연결에 의존하지 않는 애플리케이션을 말한다. 예시로 다른 애플리케이션과 연결하지 않고 HTML, CSS, JAVASCRIPT로만 만들어진 애플리케이션이 있다. 🐙 GitHub Pages 사용하기 # 프로젝트 사이트 호스..