본문 바로가기

오류74

Argument of type 'Ref<x>' is not assignable to parameter of type 'x' https://stackoverflow.com/questions/71834444/argument-of-type-refx-is-not-assignable-to-parameter-of-type-x' is not assignable to parameter of type 'x'" data-og-description="Using the new Composition API I am trying to get data from an input and pass it to a function which expects a string. However, TypeScript is complaining the types don't match up because one is a Re..." data-og-host="stackove.. 2024. 4. 26.
SCP: Connection Closed subsystem request failed on channel 0 scp: Connection closed -O 옵션을 추가해주면 문제가 해결된다. $ scp -O -P 22 test.txt abc@11.22.33.44 2024. 4. 18.
ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2) 에러내용 : ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2) 해결방법: 호스트 주소를 추가로 명시하고 접속 mysql -u root -h 127.0.0.1 -p 또는 실행중인 도커에 접속하여 MYSQL 접속 docker exec -it [컨테이너ID] bash 2024. 4. 16.
Property 'id' does not exist on type 'never'. ts Typescipt 사용 시 불러오는 데이터의 명확한 데이터 타입을 모르는 경우 발생. 보통 빈 배열을 가진 useState 변수를 만들어주는데, const yearlyItems = ref([]); 아래처럼 타입을 any로 바꿔주면 된다. const yearlyItems = ref([]); 2024. 1. 30.
DBeaver 오라클 연결 시 ORA-12514, TNS:listener does not currently know of service requested in connect descriptor -(윈도우키 + R) -> CMD 입력 -lsnrctl status 명령어를 입력해서 오라클 리스너 상태를 확인. ORCL -> XE 로 변경 2023. 10. 24.
sudo: apt-get : command not found 원인 해당 리눅스 배포판이 apt-get을 지원하지 않기 때문 apt-get 말고도 자신이 사용하고 있는 리눅스에서 지원하는 패키지 관리자를 이용하면 된다. 해결방법 yum을 사용 sudo yum install => apt-get과 사용방법은 거의 동일 2023. 8. 28.