2007/07/20
- MySQL 다운로드
MySQL Community Server 5.0.45 http://dev.mysql.com/downloads/ - (Windows Essentials (x86))
mysql-essential-5.0.45-win32.msi
- 설치
다운 받은 mysql-essential-5.0.45-win32.msi 파일을 더블 클릭하여 실행 시킨다.
C:\MySQL\MySQL Server 5.0\ 에 설치.
Configure the MySQL Server now 를 체크하면 설치 시 다음 설정을 바로 할 수 있다.
- Configuration Type : Detailed/Standard Configuration
- Server Type : Developer Machine(use low memory), Server Machine(use medium memory), dedicated MySQL Machine
- Database Usage : Multifunctional Database(InnoDB+MyISAM), Transactional Database Only, Non-TransactionalDatabase Only(MyISAM)
- InnoDB Tablespace Settings : c:\MySQL\Datafiles\
- Approximate number of concurrent connection : Decision Support(DSS)/OLAP (20), Online Transaction Processing(OLTP) (500), Manual Setting
- Networking options : Enable TCP/IP Networking (Port Number : 3306)
- Server SQL mode : Enable Strict Mode
- Default character set : Standard Character Set (latin1/English,West Europ), Best Support For Multilingualism(UTF8), Manual Selected Default Character Set / Collation (latin1,ascii,euckr,utf8)
- Windows options : Install As Windows Service (Service Name : MySQL5045), Include Bin Directory in Windows PATH
- Security options
- : Modify Security Settings (root password, Enable root access fromtemote machines), Create An Anonymous Account
- 마침
설치 후 저절로 configuration file(c:\MySQL\MySQL Server 5.0\my.ini) 을 만듦.
또 "C:\MySQL\MySQL Server 5.0\bin\mysqld-nt" --defaults-file="C:\MySQL\MySQL Server 5.0\my.ini" MySQL5045 로 서비스에 등록 된 것을 볼 수 있다. - 접속
명령 프롬프트나 도스창에서 "c:\MySQL\MySQL Server 5.0\bin\mysql.exe" -uroot -p 를 입력하면 root 라는 아이디로 접속할 수 있다. (종료는 quit 또는 \q)
C:\>"c:\MySQL\MySQL Server 5.0\bin\mysql.exe" -uroot -p
Enter password: 여기서 비밀번호 입력
mysql> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| mysql |
| test |
+--------------------+
7 rows in set (0.19 sec)
mysql>quit
C:\>
'linux setup' 카테고리의 다른 글
B+ TREE (0) | 2009.01.07 |
---|---|
grant privileges (0) | 2009.01.05 |
Apache 2.2.4 + Windows XP sp2 설치 - 짧게 (0) | 2009.01.01 |
Tomcat 6.0.13 + Apache 2.2.4 + MySQL 5.0.45+ WindowsXP (0) | 2009.01.01 |
Apache 설정 (0) | 2008.12.11 |