2007/07/20
  1. MySQL 다운로드
    MySQL Community Server 5.0.45 http://dev.mysql.com/downloads/ - (Windows Essentials (x86))
    mysql-essential-5.0.45-win32.msi
  2. 설치
    다운 받은 mysql-essential-5.0.45-win32.msi 파일을 더블 클릭하여 실행 시킨다.
    C:\MySQL\MySQL Server 5.0\ 에 설치.

    Configure the MySQL Server now 를 체크하면 설치 시 다음 설정을 바로 할 수 있다.
    1. Configuration Type : Detailed/Standard Configuration
    2. Server Type : Developer Machine(use low memory), Server Machine(use medium memory), dedicated MySQL Machine
    3. Database Usage : Multifunctional Database(InnoDB+MyISAM), Transactional Database Only, Non-TransactionalDatabase Only(MyISAM)
    4. InnoDB Tablespace Settings : c:\MySQL\Datafiles\
    5. Approximate number of concurrent connection : Decision Support(DSS)/OLAP (20), Online Transaction Processing(OLTP) (500), Manual Setting
    6. Networking options : Enable TCP/IP Networking (Port Number : 3306)
    7. Server SQL mode : Enable Strict Mode
    8. 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)
    9. Windows options : Install As Windows Service (Service Name : MySQL5045), Include Bin Directory in Windows PATH
    10. Security options
    11. : Modify Security Settings (root password, Enable root access fromtemote machines), Create An Anonymous Account
  3. 마침
    설치 후 저절로 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 로 서비스에 등록 된 것을 볼 수 있다.
  4. 접속
    명령 프롬프트나 도스창에서 "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
Posted by 으랏차
,