본문 바로가기

mysql4

ubuntu mysql 설치 ubuntu에 mysql을 설치하는 방법입니다. 우선 package를 upgrade 합니다. $ sudo apt update mysql-server를 설치합니다. $ sudo apt install mysql-server 보안 설정을 합니다. $ sudo mysql_secure_installation 질문을 읽고 y 또는 n을 선택합니다. 참고로 저는 다음과 같이 했습니다. mysql에 접속합니다. $ sudo mysql 만약 중간에 root password를 입력했다면 다음과 같은 명령어로 mysql에 접속하면 됩니다. $ mysql -u root -p 2023. 9. 1.
MacBook, MySQL,에서 "Authentication plugin 'caching_sha2_password' cannot be loaded error 처리 MacBook에서 MySQL에 연동을 할 때 "Authentication plugin 'caching_sha2_password' cannot be loaded 에러 처리 방법입니다. 원인은 MySQL 8.x 이상부터 비밀번호 암호 처리 방식이 변경되었는데 SQLAlchemy이 과거 방식을 찾고 있어서 발생하는 문제입니다. MySQL Community가 설치되어 있다면 "시스템 설정"을 클릭한 후 MySQL을 클릭합니다. "Initialize Database"를 클릭합니다. 비밀번호를 적당한 길이로 입력하고 "Use Legacy Password Encryption"을 선택한 후 "OK"를 클릭합니다. "Start MySQL Server"를 클릭합니다. MySQL 서버가 실행된 후 다시 접속을 하면 됩니다... 2023. 8. 22.
MacBook에 MySQL 설치 MacBook에 MySQL 설치하는 방법입니다. mysql download 사이트에 접속합니다. https://dev.mysql.com/downloads/mysql/ MySQL :: Download MySQL Community Server Select Version: 8.1.0 Innovation 8.0.34 5.7.43 Select Operating System: Select Operating System… Microsoft Windows Ubuntu Linux Debian Linux SUSE Linux Enterprise Server Red Hat Enterprise Linux / Oracle Linux Fedora Linux - Generic Oracle Solaris macOS dev.mysql... 2023. 8. 22.
centos에 mysql 설치 centos에 mysql을 설치하는 방법입니다. 1. MySQL download 주소 복사 https://www.mysql.com/products/community/ MySQL :: MySQL Community Edition MySQL Community Edition MySQL Community Edition is the freely downloadable version of the world's most popular open source database. It is available under the GPL license and is supported by a huge and active community of open source developers. The MySQL www.mysql.com My.. 2022. 8. 18.