허당 레몬도리
Application Mysql Error "mysql_native_password "
나. 설치 및 설정/Setup 2019. 12. 27. 13:42

C# Applicatin을 실행되면서 SQL서버와 연결을 진행하는 도중 "mysql_native_password "가 발생. Appication 문제라고 생각 되었으나 Windows Server 2016라는 OS를 생각 못했다. OS에서 차단하고 있을 거란 생각도 못하는데 직장 동료가 찾아낸 글을 보고 설정해보니 정상적으로 실행 아래 글(출처)에서는 3가지의 방법을 알려주고 있다. 해결한 방법은 3번 OS 설정을 변경하고 정상적으로 실행됐다. 아래 3가지 방법은 글 내용을 번역기로 번역 해결 방법 1 : SSL이 필요하지 않습니다. SSL로 인해 발생하므로 연결 문자열에 " SslMode = None "을 추가하여 SSL을 끌 수 있습니다 . 해결 방법 2 : SSL이 필요하고 서버 ID가 중요하며 확인..

Minidump TYPE enum 값 설명
가. 언어유형/C or C++ 2019. 12. 19. 11:32

출처 : http://www.debuginfo.com/articles/effminidumps.html#minidumptypesIntroductionIn the last couple of years, crash dumps became an important part of our debugging activities. The possibility to create a snapshot of the application state at the exact moment of failure and analyze it with a conventional debugger running on the developer’s machine is invaluable when our software fails on the cust..

[dotnet core] web api file upload(feat. windows forms)
가. 언어유형/C# 2019. 10. 25. 18:12

webserver 를 이용해 파일 업로드 기능을 만들다가 남겨놓으면 좋을거 같아 남깁니다. 코드는 아래 받으면 되고 Visual Studio 2017버전으로 작성이 되었습니다. 기본적인 코드를 소개(?)하겠습니다. 1. web server project create 1.1 Controllers folder - new controller 1.2 Code using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using System.IO; namespace WebServer.Controllers { [ApiController] public class FIleUploadController : ControllerBase { [HttpPost] [Rou..

ssl 발급
나. 설치 및 설정/Setup 2019. 7. 26. 10:58

Xshell 5 (Build 1332)Copyright (c) 2002-2017 NetSarang Computer, Inc. All rights reserved. Type `help' to learn how to use Xshell prompt.[c:\~]$ Connecting to 54.82.232.1:22...Connection established.To escape to local shell, press 'Ctrl+Alt+]'. __| __|_ ) _| ( / Amazon Linux AMI ___|\___|___| https://aws.amazon.com/amazon-linux-ami/2017.03-release-notes/8 package(s) needed for security, out of 8..

[C#] List<T>에서 Byte[]로 변경
가. 언어유형/C# 2019. 7. 17. 10:32

출처 : https://stackoverflow.com/questions/34884854/convert-listint-to-byte Convert list to byte[] How to convert list to byte[]? I could use this: byte[] bytes = lista.SelectMany(BitConverter.GetBytes).ToArray(); But it works only for list. If you have few ideas - m... stackoverflow.com List -> byte[] byte[] bytes = lista .SelectMany(x => x) .SelectMany(BitConverter.GetBytes) .ToArray(); byte[] -..

#include <>와 ""의 차이
가. 언어유형/C or C++ 2019. 7. 11. 11:21

출처 : https://gcc.gnu.org/onlinedocs/cpp/Include-Syntax.html Both user and system header files are included using the preprocessing directive ‘#include’. It has two variants:사용자와 시스템 헤더 파일은 모두 사전 처리 지침 '#include'를 사용하여 포함된다. 두 가지 변형이 있다.#include This variant is used for system header files. It searches for a file named file in a standard list of system directories. You can prepend directories to ..

보호되어 있는 글입니다. 내용을 보시려면 비밀번호를 입력해주세요.
article thumbnail
visual studio 파일 열기 오류

코드 속에 주석을 한글로 기입했는데 갑자기 아래와 같은 오류가 뜬다면 해결 방법을 찾아보던 중에 설정을 이리저리 바꿔보다가 찾았다. 아래 메뉴에서 Auto-detect UTF-8 encoding without signature를 체크하면 오류가 사라진다