CoMirror (Smart Mirror)
2022. 7. 29.
Raspberry Pi에 MySQL 설치 & workbench 연결
MySQL 설치 1. MariaDB-server 설치 pi@raspberrypi : ~ $ sudo apt-get install mariadb-server php-mysql -y 2. MySQL 설치 pi@raspberrypi : ~ $ sudo apt-get install mysql-server mysql-client 3. 데이터 베이스 접속 pi@raspberrypi : ~ $ sudo mysql -uroot 이럼 MariaDB에 접속 된다. pi@raspberrypi : ~ $ → MariaDB [(none)] > 4. MySQL 접속 MariaDB [(none)] > use mysql 이제 MySQL에 접속 된다. MariaDB [(none)] > → MariaDB [mysql] > MySQL 계..