Devlog.
게시일

PlanetScale 시작하기

cover
date
Apr 13, 2022
slug
planetscale-시작하기
status
Published
tags
PlanetScale
Database
summary
PlanetScale
type
Post

Planet Scale

MySQL 호환 Serverless 데이터베이스 플랫폼
Vitess
MySQL을 scaling 하기 위한 데이터베이스 클러스터링 시스템

PlanetScale CLI 설치

macOS

brew install planetscale/tap/pscale

Linux

Release 페이지에서 .deb 또는 .rpm 파일 다운로드 후 sudo dpkg -i 또는 sudo rpm -i로 설치

Windows

scoop으로 설치
scoop bucket add pscale <https://github.com/planetscale/scoop-bucket.git> scoop install pscale mysql

PlanetScale DB 생성 및 연결하기

로그인

pscale auth login

지역 확인하기

pscale region list

DB 생성하기

pscale database create <database> --region <region>

DB 연결하기

MySQL 서버가 실행중인 경우 포트 충돌
다른 포트로 연결하기
pscale connect <database> <branch> --port <port>
연결 후 TablePlus등을 통해 mysql://127.0.0.1:<port>/<database>로 접속