본문 바로가기
[Filebeat] Filebeat 설치 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.. 2020. 7. 29.
[웹사이트 제작] 2. 계정 생성 화면 @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.. 2020. 7. 11.
[ 웹사이트 제작] 1. Login 화면 * 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.. 2020. 7. 9.
Dapper 사용시 key/explicitKey Dapper를 사용할 때 insert시 pk를 자동으로 채워주려면 해당 변수를 [Key] 로 해줘야함 ex) public class ItemEntity { [Key] public long ItemIdx {get;set;} public long InsertToDB() { conn.Insert(this); return ItemIdx; } } - explicitKey키로 어트리뷰트를 하면 위의 방법은 적용되지 않음 [추가 + ] [key] : "데이터베이스에서 자동으로 생성되는 키로 속성 지정"으로 정의 ( Auto Increment) [Explicti Key] : 키는 키인데 자동 증가 하지 않는 컬럼 https://stackoverflow.com/questions/49428967/dappers-explic.. 2020. 1. 3.
[mysql] safe update 하기 에러 내용 you are using safe update mode and you tried to update a table without a WHERE that uses a key column To disable safe mode, toggle the option in Preferecnces -> SQL queries and reconnect. 해결 방법 > query SET SQL_SAFE_UPDATES = 0; 2019. 11. 22.
GetLocalIP() - 본인 pc localIP 받는 코드. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 string GetLocalIP() { string result = string.Empty; var host = Dns.GetHostEntry(Dns.GetHostName()); foreach (var ip in host.AddressList) { if (ip.AddressFamily == AddressFamily.InterNetwork) { result = ip.ToString(); break; } } return result; } er 2019. 11. 13.