본문 바로가기

전체 글303

[웹사이트제작] 3. 페이징 @View 화면 @controller 코드 * PocketmonContoller 코드 public class PocketmonController : Controller { // GET: Pocketmon public ActionResult Index(int currentPage = 1) { var result = new List(); var pocketMonList = new List(); // db에서 읽어옴 using (var db = new DBConnector()) { result = Tbl_PocketMon.SelectFromDB(db.Connection); } // 데이터 정리 foreach(var r in result) { pocketMonList.Add(new PocketMonModel(r.. 2020. 8. 17.
aws에 web 게시하기. https://aws.amazon.com/ko/getting-started/hands-on/host-net-web-app/ .NET 애플리케이션 시작 실망을 드려 죄송합니다. 오래되었거나 혼란스럽거나 부정확한 사항이 있습니까? 피드백을 제공하여 이 자습서를 개선할 수 있도록 도와주십시오. aws.amazon.com - 관련 문서 주소 * 게시설정 만들때 주의 Server : 업로드할 서버 주소 SiteName : 사이트 이름 설정 Url : 뒤에 port필요하면 포트까지 설정해야함. 2020. 7. 30.
[ElasticSearch] ElasticSearch 서비스로 설치 1. Download https://www.elastic.co/kr/downloads/elasticsearch Download Elasticsearch Free | Get Started Now | Elastic | Elastic Want it hosted? Deploy on Elastic Cloud. Get Started » www.elastic.co * WINDOWS 버전 다운로드 2. 다운로드된 zip파일 압축 해제 후 폴더 채로 설치할 드라이브로 옮김 3. nssm 실행 - nssm 다운로드 및 사용법은 아래 포스팅 참고 https://podo1017.tistory.com/265 [nssm] nssm 다운로드/사용 1. 다운로드 https://nssm.cc/download NSSM - the Non.. 2020. 7. 30.
[nssm] nssm 다운로드/사용 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.. 2020. 7. 30.
[Logstash] Logstash windows service로 설치 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.. 2020. 7. 29.
[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.