본문 바로가기

분류 전체보기

(109)
[jeus8] 한글명 파일 업로드 시 깨지는 문제 Jeus WebAdmin - server1 - Engine - Web Engine - Basic - 고급선택사항 - encodingRequest Url Encoding항목 수정Forced 체크 후 UTF-8  개발환경 tomcat 에서 잘 되던 파일 업로드 다운로드가 jeus8에 배포하니 문제가 생김
[javascript/정규식] 천단위 콤마 표시 // 천단위 콤마 표시 (소수점 포함 문자열)get_currency = function(value){return value.toString().replace(/(\..*)$|(\d)(?=(\d{3})+(?!\d))/g, (d, f)=> f|| d+',');} inputreturn123456.123123,456.123123123123,123
docker OCI runtime create failed, exec: "source": executable file not found in $PATH: unknown. 오류 52c5136361900afebd36e8e8f463c681928917cae520f9ce6a40b09d8ee3c226 docker: Error response from daemon: OCI runtime create failed: container_linux.go:367: starting container process caused: exec: "source": executable file not found in $PATH: unknown. exec: "source": executable file not found in $PATH: unknown. 위 에러가 발생. docker run -it -d --name test container2 위와 같이 명령어 입력 후 발생한 에러 docker run -it -..
[Error] SLF4J: No SLF4J providers were found. SLF4J: No SLF4J providers were found. SLF4J: Defaulting to no-operation (NOP) logger implementation SLF4J: See http://www.slf4j.org/codes.html#noProviders for further details. SLF4J: Class path contains SLF4J bindings targeting slf4j-api versions prior to 1.8. SLF4J: Ignoring binding found at [jar:file:/D:/-/repository/ch/qos/logback/logback-classic/1.2.6/logback-classic-1.2.6.jar!/org/slf4j/imp..
docker 로 jeus7 구동하기 1. jeus7 이미지 pull 해오기 docker pull lkwdocker/jeus7 2. docker 실행 후 jeus7 이미지 실행 - docker run -it -d -P --expose=9736 --name jeus7 lkwdocker/jeus7 /bin/bash 3. docker ps 로 매핑된 포트번호 확인 4. 접속해보기 주소 : 도커아이피(로컬이라 localhost):49154/webadmin 포트번호는 랜덤이라 docker ps로 확인 후 접속해야한다. 계정은 administraror/jeusadmin 으로 로그인하면 된다.
docker에 node.js + redis 프로젝트 올리기 필자는 참고로 node.js 써본적이 없음. node.js가 크롬엔진에서 떼온거다 정도만 아는 수준 node.js 프로젝트 초기 세팅할 때 cmd에 npm init 입력하면 프로젝트 파일 자동으로 생성해준다 docker로 실행시키는 node.js 앱 구조 - index.js ---> 제일 처음 실행하는 파일 - package.json --> maven이나 gradle처럼 종속성 관리하는 파일 - Dockerfile ---> 우리가 중점적으로 봐야하는 파일 - docker-compose.yml ---> 서로다른 도커 컴포넌트끼리 연결시켜주는 설정파일 (도커로 서버, 디비 다 올릴경우) - database : redis -> nosql 1. Dockerfile Dockerfile 은 기타 index.js 를..
docker error Cannot find module '/index.js' docker run 할 때 생기는 에러 internal/modules/cjs/loader.js:638 ^ Error: Cannot find module '/index.js' at Function.Module._resolveFilename (internal/modules/cjs/loader.js:636:15) at Function.Module._load (internal/modules/cjs/loader.js:562:25) at Function.Module.runMain (internal/modules/cjs/loader.js:831:12) at startup (internal/bootstrap/node.js:283:19) at bootstrapNodeJSCore (internal/bootstrap/nod..
docker 명령어 정리 docker window 실행 후 로컬에서 작업 진행. 1. docker Image 가져오기 이미지는 직접 만들어도 되지만 도커 허브에서 왠만한건 다 다운받는다. https://hub.docker.com/ Docker Hub Container Image Library | App Containerization Increase your reach and adoption on Docker Hub With a Docker Verified Publisher subscription, you'll increase trust, boost discoverability, get exclusive data insights, and much more. hub.docker.com [사용법] docker pulll [경로] [예..