인프런 영문 브랜드 로고
인프런 영문 브랜드 로고

Inflearn Community Q&A

in01067941's profile image
in01067941

asked

Using Node.Js

session 9 - session store-mysql

최신 mysql 에 node.js 가 연결되지 않는 문제 해결 방법(session 9 - session store-mysql)

Written on

·

595

0

"mysql -u root -p"해서 mysql을 들어가고, 다음과 같은 명령어를 실행해봅니다.

ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '0000'

그리고 app_session_mysql.js를 다시 실행하면 session table이 만들어진 것을 확인할 수 있습니다.

"왜 최신 mysql에서 저렇게 해야 sessions table이 자동으로 만들어 지는가?"는 인터넷에 찾아보면 나와있습니다!

javascriptnode.jsnodejs

Answer

This question is waiting for answers
Be the first to answer!
in01067941's profile image
in01067941

asked

Ask a question