1. 다운로드 https://nssm.cc/download NSSM - the Non-Sucking Service Manager NSSM - the Non-Sucking Service Manager Windows 10 Creators Update 2017-04-26: Users of Windows 10 Creators Update should use prelease build 2.2.4-101 to avoid an issue with services failing to start. If for some reason you cannot use that build you can als nssm.cc 위 사이트에서 nssm을 다운 받는다. 2. CMD 창 실행 * 되도록이면 관리자 권한으로 실행하자. 3. n..
0. 자바 설치 확인 자바가 없으면 logstash를 설치해도 에러가 남. 1. logstash 다운로드 https://www.elastic.co/kr/downloads/logstash Download Logstash Free | Get Started Now | Elastic | Elastic Want to upgrade? We'll give you a hand. Migration Guide » www.elastic.co - ZIP 다운로드 2. 해당 zip을 압축 해제 후 C드라이브에 복사 3. 명령 프롬프트(cmd)를 괸리자 권한으로 실행 4. nssm 설치 폴더로 이동 $ cd C:\nssm-2.24\win64 $ nssm install logstash 명령어 입력 5. nssm service in..
1. FileBeat msi 다운 로드 https://www.elastic.co/kr/downloads/beats/filebeat Download Filebeat • Lightweight Log Analysis | Elastic Want to upgrade? We'll give you a hand. Migration Guide » www.elastic.co * Windows MSI 64-Bit 다운로드 (자신의 운영체제 비트에 맞춰 다운로드) 2. 다운 받은 filegeat-7.7.0-windows-x86_64.exe 파일 실행 3. 실행 후 설치 시작 I accept the terms in the License Agrement 체크 후 Install 인스톨 버튼 클릭 설치 완료, open filebea..
@View 화면 @컨트롤러 코드 앞전에 만들었던 로그인 페이지에서 "CreateAccount" 버튼을 클릭하면 LoginController의 httpGet CreateAccount() 함수를 호출 한다. /// /// 계정 생성 View 불러오는 함수 /// /// [HttpGet] public ActionResult CreateAccount() { var model = new AccountModel(); return View(model); } /// /// 계정 생성 실행 함수 /// /// /// [HttpPost] public ActionResult CreateAccount(AccountModel model) { // View에서 보낸 Model 데이터의 유효성 체크 if (ModelState.Is..
* Bootstrap4를 사용하여 제작함. * MVC패턴을 사용하여 제작함. @View 이미지 @View 코드 - Index.cshtml @using (Html.BeginForm("Login","Login",FormMethod.Post)) { Login Create Account } - 데이터 입력후 Login 버튼 클릭 시 Login controller의 Login 함수 호출함 - "Create Account" 버튼 클릭 시 계정 생성 화면으로 넘어감. @css 부분 .login-form { width: 340px; margin: 50px auto; font-size: 15px; } .login-form form { margin-bottom: 15px; background: #f7f7f7; box-sh..