수색…


sails.js에서 mysql 데이터베이스 연결을 구성하는 방법

이렇게하려면 먼저 root에서 config 폴더를 찾습니다. 그런 다음 connections.js 엽니 다.

위치하고 있다

  // someMysqlServer: {
  //   adapter: 'sails-mysql',
  //   host: 'YOUR_MYSQL_SERVER_HOSTNAME_OR_IP_ADDRESS',
  //   user: 'YOUR_MYSQL_USER', //optional
  //   password: 'YOUR_MYSQL_PASSWORD', //optional
  //   database: 'YOUR_MYSQL_DB' //optional
  // },

이 행의 주석 처리를 제거하십시오.

이 someMysqlServer와 같은 커넥터에 적합한 이름을 mysql_connection 또는 원하는 이름으로 지정하십시오.

  mysql_connection: {
    adapter: 'sails-mysql',
    host: '127.0.0.1', // can user localhost or mysql connection either
    user: 'root', // your mysql username
    password: 'xxxxxxxxx', // your mysql password
    database: 'your database name here' // database name
  },

파일을 저장

루트 폴더로 이동하여 다음 명령을 실행하십시오.

$ npm install sails-mysql --save

참고 : 위 명령을 실행하여 sails.js 용 mysql 드라이버 패키지를 설치합니다.

너 끝났어.

이제 모델 설정에서 mysql_connection을 연결 이름으로 사용할 수있다. 다음 명령을 사용하여 앱을 들어 올리면 :

$ sails lift

당신은 모델 스키마가 MySQL 데이터베이스에서 자동으로 업데이트됩니다.



Modified text is an extract of the original Stack Overflow Documentation
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow