MySQL Windows 설치를 MIS 설치가 아닌 Archive 설치를 해보았다. 이렇게 설치하면 좀 가벼울까 하는 생각에 ㅋ MySQL Document 참조 했어요 ( http://www.mysql.com ) Windows7 64bit MySQL Community Server (Archived Versions) 5.7.12 32bit Archive Install (설치) 1. MySQL Community Server 아카이브 버전파일(zip)을 다운받아 앞축을 해제 2. 설치를 원하는 경로로 폴더이동 C:\mysql-5.7.13 3. mysql-5.7.13 폴더에 my-default.ini 파일을 확인할 수 있음. 4. my-default.ini (option 파일)을 수정하고 my.ini 로 저장...
데이터베이스 및 사용자를 생성한다. 새로운 사용자에게 데이터베이스 사용 권한을 부여 한다. 1. root 계정으로 로그인 하자. > mysql -u root -p > Enter Password: 2. 데이터베이스를 생성 및 조회 * show character set (사용가능한 characterset 조회) mysql> show character set; mysql> create database webs; mysql> alter database webs default character set 'utf8' collate 'utf8_general_ci'; mysql> select * from information_schema.schemata; 3. 사용자 생성 및 권한부여 mysql> create user ..