[PostgreSQL] pgjdbc: autodetected server-encoding to be ISO-8859-1, if the message is not readable, please check database logs and/or host, port, dbname, user, password, pg_hba.conf 에러 해결하기
·
프로그램/DB
안녕하세요! 프뚜(프로그래머 뚜)입니다! [개발 환경] - OS: windows 10 64bit - DB: PostgreSQL 15.0 pgjdbc: autodetected server-encoding to be ISO-8859-1, if the message is not readable, please check database logs and/or host, port, dbname, user, password, pg_hba.conf 에러가 발생했을 때 처리할 수 있는 방법에 대해 포스팅합니다. - 권한 부여하기 ALTER USER [USER] WITH CREATEDB; ALTER USER [USER] WITH SUPERUSER; ALTER USER [USER] WITH CREATEROLE; ALTER ..
[Docker] /var/run/docker.sock의 permission denied 발생하는 경우
·
프로그램/DOCKER
안녕하세요! 프뚜(프로그래머 뚜)입니다! [개발 환경] - OS: CentOS 8 (docker container) - ROOT 계정으로 실행 - 인터넷이 가능한 환경 Got permission denied while trying to connect to the Docker daemon socket at unix:///var/run/docker.sock: Get http://%2Fvar%2Frun%2Fdocker.sock/v1.40/containers/json?all=1: dial unix /var/run/docker.sock: connect: permission denied docker를 설치하고 docker를 사용하려고 했을 때, /var/run/docker.sock의 permission denied..
[IntelliJ] unmappable character for encoding MS949 해결하기
·
프로그램/ETC
안녕하세요! 프뚜(프로그래머 뚜)입니다! [개발 환경] - OS: windows 10 64bit - JAVA: v1.8 unmappable character for encoding 에러가 발생했을 때 처리 방법에 대해 포스팅하겠습니다. 1. IntelliJ > File > Settings...으로 이동하기 2. Editor > File Encodings로 이동하기 3개의 인코딩을 변경하기 - Global Encoding - Project Encoding - Properties Files > Default encoding for properties files 3. IntelliJ > Help > Edit Custom VM Options...로 이동하기 4. 설정 추가하기 -Dfile.encoding=UTF..
[VUE] should always be multi-word-component 해결하기 (ESLint)
·
프로그램/VUE
안녕하세요! 프뚜(프로그래머 뚜)입니다! [개발 환경] - OS: windows 10 64bit - git: 2.37.1.windows.1 - nodejs: v16.16.0 - npm: 8.15.0 - yarn: 1.22.19 - @vue/cli(vue3): 5.0.8 - vue-router: 4.1.3 새로운 vue파일을 생성 후 서버를 실행시키는데.. Component name Main should always be multi-word vue/multi-word-component-names라는 에러를 만나게 되었습니다. VUE에서 컴포넌트의 이름을 항상 단일 단어가 아닌 두 개 이상의 단어를 조합하여 만드는 것을 추천한다고 합니다. HTML 요소와 혼동을 일으킬 수 있는 요소를 제거하기 위해 두 개의..
[Git] 'git' 용어가 cmdlet, 함수, 스크립트 파일 또는 실행할 수 있는 프로그램 이름으로 인식되지 않습니다. 이름이 정확한지 확인하고 경로가 포함된 경우 경로가 올바른지 검증한 다음 다시 시..
·
프로그램/ETC
안녕하세요! 프뚜(프로그래머 뚜)입니다! [개발 환경] - OS: windows 10 64bit - git: 2.37.1.windows.1 - IntelliJ: 2022.2 위 에러가 발생하는 이유는 기본 터미널이 윈도우 Power Shell로 설정되어 있기 때문입니다. 기본 터미널의 종류를 cmd 또는 bash(git)로 변경하면 오류 없이 실행이 가능합니다. 1. 인텔리제이 > File > Settings... 실행 하기 2. 검색창에 'Terminal'로 검색 하기 # 터미널 경로 Tools > Terminal 3. Shell path 변경하기 # cmd Application Settings > Shell path > cmd.exe # git bash Application Settings > She..
[VUE] yarn : 이 시스템에서 스크립트를 실행할 수 없으므로...
·
프로그램/VUE
안녕하세요! 프뚜(프로그래머 뚜)입니다! [개발 환경] - OS: windows 10 64bit - nodejs: v16.16.0 - npm: 8.15.0 - yarn: 1.22.19 1. powerShell (관리자 권한) 실행하기 2. 권한 상태 확인하기 get-ExecutionPolicy 권한의 종류는 아래와 같습니다. - Restricted: default설정값으로, 스크립트 파일을 실행할 수 없음 - AllSigned: 신뢰할 수 있는(서명된) 스크립트 파일만 실행할 수 있음 - Unrestricted: 모든 스크립트 실행가능 - ByPass: 경고/차단 없이 모든 것을 실행가능 - Undefined : 권한을 설정하지 않음 - RemoteSigned: 로컬에서 본인이 생성한 스크립트와, 신뢰할..
[VUE] npm WARN config global --global, --local are deprecated. Use --location=global instead
·
프로그램/VUE
안녕하세요! 프뚜(프로그래머 뚜)입니다! [개발 환경] - OS: windows 10 64bit 위 에러는 npm-windows-upgrade 패키지로 해결할 수 있습니다. 1. PowerShell(관리자 권한)을 실행하기 2. 아래 명령어로 세팅 및 설치하기 Set-ExecutionPolicy Unrestricted -Scope CurrentUser -Force npm install --global --production npm-windows-upgrade npm-windows-upgrade npm-windows-upgrade 실행 시, 최신 버전으로 선택하시면 됩니다. 궁금하신 부분 또는 문제가 생긴 부분에 대해서 댓글 남겨주시면 빠르고 정확한 답변드리겠습니다.
[CentOS] Failed to download metadata for repo ‘AppStream’
·
프로그램/LINUX
안녕하세요! 프뚜(프로그래머 뚜)입니다! [개발 환경] - OS: CentOS 8 (docker container) - ROOT 계정으로 실행 - 인터넷이 가능한 환경 1. 저장소를 추가해서 yum update 를 진행합니다. cd /etc/yum.repos.d/ sed -i 's/mirrorlist/#mirrorlist/g' /etc/yum.repos.d/CentOS-* sed -i 's|#baseurl=http://mirror.centos.org|baseurl=http://vault.centos.org|g' /etc/yum.repos.d/CentOS-* 2. yum update를 진행합니다. yum update -y yum -y update 실행 시, 제목과 같은 에러가 발생한다면 저장소에 위 내용을..
프뚜
'error' 태그의 글 목록