mysql
-
[Django] Django와 MySQL 연동하기Web/Django 2020. 7. 9. 23:46
아직 장고에 MySQL이 설치되어 있지 않다면 아래 포스트를 참고해서 설치하면 된다. https://dodormitory.tistory.com/3 [ Ubuntu(우분투)에 MySQL 설치하기 우분투에 MySQL설치하는 것은 어렵지 않다. 참고로 Ubuntu 18.04를 사용하고 있습니다. MySQL 설치 sudo apt update sudo apt install mysql-server 위 명령어들을 터미널에 입력해보자. 우선 업데이트하고 난 다.. dodormitory.tistory.com ](https://dodormitory.tistory.com/3) 1 - Settings.py에서 Database를 MySQL로 바꿔주기 장고를 처음 설치하면 settings.py에서 Database는 SQLite로..
-
데비안(Debian)에 MySQL 설치하기Web 2020. 7. 4. 11:51
어쩌다가 Debian 에서도 MySQL을 설치해볼 일이 있었는데 Ubuntu에 설치하는 것과 미묘하게 다른 점이 있어서 적어본다. 우선 sudo apt update 를 입력해서 패키지들을 업데이트 한다. 다음에 바로 'sudo apt install mysql-server'를 입력하면 아래와 같은 에러가 뜬다. Reading package lists... Done Building dependency tree Reading state information... Done Package mysql-server is not available, but is referred to by another package. This may mean that the package is missing, has been obsol..
-
Ubuntu(우분투)에 MySQL 설치하기Web 2020. 7. 3. 21:16
우분투에 MySQL설치하는 것은 어렵지 않다. 참고로 Ubuntu 18.04를 사용하고 있습니다. MySQL 설치 sudo apt update sudo apt install mysql-server 위 명령어들을 터미널에 입력해보자. 우선 업데이트하고 난 다음에 mysql-server를 설치한다. 이 두 명령어를 사용하면 사실 설치는 끝난다. sudo apt install mysql-server Reading package lists... Done Building dependency tree Reading state information... Done Package mysql-server is not available, but is referred to by another package. This may ..