분류 전체보기(212)
-
[MariaDB/MySQL] 로컬호스트 접속 오류 #2
접속 오류 #1 에서 소켓 문제를 해결하고 나서, 리눅스 일반 사용자 계정에서 Maria DB 의 root 계정으로 접속을 시도했더니 역시나 집에서 테스트 DB 설정하다가 포기하게 만드는 귀찮은 오류가 나온다. 바로 Access denied 이다. $ mariadb -u root -S /tmp/mysql.sock ERROR 1698 (28000): Access denied for user 'root'@'localhost' 이건 sudo 명령을 앞에 붙이면 간단히 해결된다. $ sudo mariadb -u root -S /tmp/mysql.sock Welcome to the MariaDB monitor. Commands end with ; or \g. Your MariaDB connection id is ..
2023.04.30 -
[MariaDB/MySQL] 로컬호스트 접속 오류 #1
localhost 에서 운영 중인 DB 에 접속시도할 때 다음과 같이 소켓을 못찾는 오류가 뜰 때가 있다. 혹자는 로그에 기록된 (mariadb의) root 계정의 임의 생성된 패스워드를 찾아서 지정하면 된다는데 바이너리 타볼로 직접 설치한 내 Maria DB 로그에서는 password 라는 단어를 도무지 찾을 수 없었다. $ mariadb ERROR 2002 (HY000): Can't connect to local server through socket '/run/mysqld/mysqld.sock' (2) 익숙치 않거나 불편한 오류 메시지를 보면, (마치 윈도에서 발생하는 0x????? 메시지처럼), 원인 분석도 안한 체 그냥 귀찮아서 어떻게든 구글링하다가 포기하게 될 때가 잦다. 위의 메시지는 Mar..
2023.04.30 -
MariaDB (tar.gz) 직접 설치하기
https://mariadb.org/download Download MariaDB Server - MariaDB.org REST API Release Schedule Reporting Bugs … Continue reading "Download MariaDB Server" mariadb.org 1. 바이너리 배포판(tarball - tar.gz, tgz, tar.bz2, tbz, tar.Z, ...) 을 다운로드한다. 2. 적당한 위치에 압축을 푼다. (INSTALL-BINARY 문서에서는 /usr/local/ 밑에 설치할 것을 권한다. that's linux way~) $ cd /usr/local --- (설명: /usr/local 밑에 설치한다.) $ sudo tar xzf (다운로드한 경로)/mar..
2023.04.29 -
Hook : useState
참고한 원문 : https://www.w3schools.com/react/react_hooks.asp React HooksW3Schools offers free online tutorials, references and exercises in all the major languages of the web. Covering popular subjects like HTML, CSS, JavaScript, Python, SQL, Java, and many, many more.www.w3schools.comHook (훅)은 React v16.8 에서 도입된 기능으로서 state 와 리액트의 여러가지 특성에 액세스할 수 있도록 지원하며 이로 인해 class (리액트 클래스)의 필요성을 없애버렸다. 당분간 clas..
2023.04.07 -
conditional - {true} (O) "true" (X)
https://www.w3schools.com/react/react_conditional_rendering.asp React Conditional RenderingW3Schools offers free online tutorials, references and exercises in all the major languages of the web. Covering popular subjects like HTML, CSS, JavaScript, Python, SQL, Java, and many, many more.www.w3schools.com
2023.04.07 -
React / React Router / Next.js / Gatsby
참고 리소스 : https://nextjs.org/learn/foundations/about-nextjs/what-is-nextjs React (리액트)는 인터랙티브한 사용자 인터페이스를 만들 때 쓰는 자바 스크립트 라이브러리이다. HTML 을 컴포넌트로 나눠서 관리할 수 있다. 컴포넌트를 초기화할 때 전달인자로 받을 수 있는 Props, 지속적으로 값을 변경할 수 있는 State, 아직 모르지만 Hook 이라는 변수개념이 존재한다. create-react-app 모듈로 Nodejs 프로젝트 구조를 생성할 수 있다. React 자체는 UI 에 한정되어 있어서 웹 애플리케이션을 만드려면 추가적인 모듈을 설치해주어야 한다. 그 중에 react-router-dom 도 있다. Next.js 는 또 무엇인고 하니..
2023.04.06