본문 바로가기

분류 전체보기11

CentOS 7 minimal + apache Tomcat 8.5 + WAR 배포 에러 0. 실행환경 VMware Workstation 16 CentOS 7 minimal apache tomcat 8.5.43 Spring 프로젝트 .WAR 파일 1. 에러 내용 04-Feb-2022 17:06:57.222 SEVERE [localhost-startStop-1] org.apache.catalina.core.StandardContext.startInternal One or more listeners failed to start. Full details will be found in the appropriate container log file 04-Feb-2022 17:06:57.224 SEVERE [localhost-startStop-1] org.apache.catalina.core.Stand.. 2022. 2. 4.
[Kendo ui] DropDownList에 Json 넣기 에러 해결 Problem Kendo ui의 DropDownList에 DB에서 받아온 json 데이터를 넣으려는데 에러가 났다. 이렇게 생긴걸 Kendo ui 자바스크립트에 넣었는데... var jikgub = $("#jikgub").kendoDropDownList({ optionLabel: "Select jikgub...", height: 800, dataSource: { type:"json", transport: { read: "http://localhost:8080/api/jikgub", type: "GET", dataType: "json", contentType: "application/json; charset=utf-8" } }, dataTextField : "value", dataValueField : ".. 2022. 1. 19.
kendo Ui 공부중... $("#grid").kendoGrid({ toolbar:["save"], dataSource: { type: "json", transport: { read: "http://localhost:8080/api" }, pageSize: 50, serverPaging: { page:1, pageSize:50 }, schema:{ model: { id: "emp_cd", fields: { emp_nm: { type: "string"}, perno: { type: "string"}, jikgub: { type: "string"}, jikchk: { type: "string"}, telno: { type: "string"}, hpno: { type: "string"}, } } } }, height: 800, grou.. 2022. 1. 19.
[AWS] elastic beanstalk 에서 react 배포 502 오류 (code ELIFECYCLE errno 126) AWS elastiic beanstalk에서 react 어플리케이션을 배포했다. 그런데 책과 달리 내 실습환경에서는 오류가 나기 시작했다. 로그 내용을 살펴보니 이랬다. Dec 30 16:00:30 ip-172-31-46-206 web: > todo-front@0.1.0 start /var/app/current Dec 30 16:00:30 ip-172-31-46-206 web: > react-scripts start Dec 30 16:00:30 ip-172-31-46-206 web: sh: /var/app/current/node_modules/.bin/react-scripts: Permission denied Dec 30 16:00:30 ip-172-31-46-206 web: npm ERR! code E.. 2021. 12. 31.