본문 바로가기

basic/Node.js

RSA public key is not available client side. Either set option `cachingRsaPublicKey` to indicate public key path, or allow public key retrieval with option `allowPublicKeyRetrieval

mariadb.createConnection({

    host: 'localhost',

    user: 'root',

    password: 'pwd',

    database: 'dbname',

    port: 3306,

    connectionLimit: 5,

    allowPublicKeyRetrieval: true

})

 

 

mysql 8.0부터는 allowPublicKeyRetrieval를 true로 해줘야 하는듯하다.

'basic > Node.js' 카테고리의 다른 글

npm ERR! code ERESOLVE  (0) 2022.02.24
NPM 모듈 개발환경으로 설치하기  (0) 2021.12.29
path  (0) 2021.07.11
api 중복되는 값 해결하기 lodash  (0) 2021.05.31
qs 라이브러리  (0) 2021.03.17