본문 바로가기

전체 글

(111)
telnet 명령어 - 통신 테스트할 때 사용하는 명령어- 텍스트 기반으로 동작하며 보안연결을 제공하지 않음- 윈도우 cmd창에서 사용할 수 있다. - TCP/IP 프로토콜 기반으로 동작- Window 10, 11의 경우 기본적으로 비활성화 되어있으므로 설정 필요 - telnet [IP주소] [포트번호]
z 확장자 파일 https://kr.bandisoft.com/bandizip/howto/open-z01/ 반디집 - Z01 파일은 어떻게 열 수 있나요?Z01 파일은 어떻게 열 수 있나요? 반디집을 비롯한 압축 프로그램으로 파일을 압축하면 보통 다음과 같이 1개의 ZIP 파일이 생성됩니다. 그런데 별도의 설정으로 파일을 분할 압축하면, 다음과 같kr.bandisoft.com
[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 를..