[Django] mariaDB 연동

SEOP·2024년 6월 24일
0
post-thumbnail

1. settings.py 수정

# settings.py

#... other codes

DATABASES = {
	'default': {
		'ENGINE': 'django.db.backends.mysql',
		'NAME': '{데이터베이스명}', 
		'USER': '{계정 아이디}',
		'PASSWORD' : '{계정 비밀번호}',
		'HOST': '{URL}',	# 공백일 경우, localhost
		'PORT' : '3306'		# 공백일 경우, 3306
        
#... other codes

2. mysql 커넥터 모듈 설치

2.1 mysqlclient (파이썬 권장)

여기 참고

2.2 pymysql (본인 사용)

여기 참고


참고: https://note.chanyeongpark.com/posts/python/15
참고: https://growupcoding.tistory.com/80

profile
응애 나 애기 개발자

0개의 댓글