레드헷 계열 리눅스에서 MySQL설치
리눅스 DB설치 3번째 DB 포스팅으로 MySQL입니다.
MySQL은 그전에도 무들에 관한 포스팅을 써본적이 있고... 너무 많은 사람들이 애용하고 사용하는 DB이기 때문에 포스팅에 남길 글이 뭐 없네요.... 구색을 맞추기 위해..어차피 새 테스터 시스템을 만드는거니깐 그냥 자취만 남기는 포스팅을 합니다... 이렇게 포스팅을 남겨두면 나중에 시스템을 구성할때 너무나 편하답니다.
다운받는곳
http://www.snowrice.com/?module=file&act=procFileDownload&file_srl=851&sid=d3755b335988fa2bf2f0465b97d6e6be
[root@akas Desktop]# tar -xvf mysql-5.1.32.tar.gz 생략 mysql-5.1.32/plugin/fulltext/configure.in mysql-5.1.32/configure.in mysql-5.1.32/Makefile.in [root@akas Desktop]# cd mysql-5.1.32 [root@akas mysql-5.1.32]# ./configure --prefix=/usr/local/mysql --localstatedir=/usr/local/mysql/data --with-charset=utf8 --with-mysql-user=mysql --sysconfdir=/etc --enable-thread-safe-client 생략 Remember to check the platform specific part of the reference manual for hints about installing MySQL on your platform. Also have a look at the files in the Docs directory. Thank you for choosing MySQL! |
컴파일끝... 세부설정 시작
DB생성..
[root@akas mysql-5.1.32]# ls /usr/local/ bin etc games include lib libexec mysql pgsql sbin share src [root@akas mysql-5.1.32]# /usr/local/mysql/bin/mysql_install_db Installing MySQL system tables... OK Filling help tables... OK To start mysqld at boot time you have to copy PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER ! /usr/local/mysql/bin/mysqladmin -u root password 'new-password' Alternatively you can run: which will also give you the option of removing the test See the manual for more instructions. You can start the MySQL daemon with: You can test the MySQL daemon with mysql-test-run.pl Please report any problems with the /usr/local/mysql/bin/mysqlbug script! The latest information about MySQL is available at http://www.mysql.com/ |
DB생성확인과 계정생성
[root@akas mysql-5.1.32]# ls /usr/local/mysql/data mysql test [root@akas mysql-5.1.32]# cat >> /etc/ld.so.conf /usr/local/mysql/lib [root@akas mysql-5.1.32]# cat /etc/ld.so.conf [root@akas mysql-5.1.32]# ldconfig |
my.cnf오류처리
[root@akas bin]# vi /etc/my.cnf # Disable Federated by default #skip-federated(주석처리) |
데몬 실행 & 관리자 루트 비밀번호 생성
[root@akas bin]# ./mysqld_safe --user=mysql & [2] 26772 [root@akas bin]# 090715 04:34:38 mysqld_safe Logging to '/usr/local/mysql/data/akas.com.err'. 090715 04:34:38 mysqld_safe Starting mysqld daemon with databases from /usr/local/mysql/data [root@akas bin]# ./mysqladmin -uroot -p password 1234 Enter password: |
설정끝 _ 부팅시 자동 로딩
[root@akas bin]# vi /etc/rc.local #!/bin/sh # # This script will be executed *after* all the other init scripts. # You can put your own initialization stuff in here if you don't # want to do the full Sys V style init stuff. touch /var/lock/subsys/local |
노란색부분만 Ctrl+C Ctrl+V 끝남...
'manabu & Linux' 카테고리의 다른 글
레드헷 리눅스에서 Apache + Oracle + PostgreSQL + MySQL + PHP + Tomcat + JAVA 서버구성2 (0) | 2009.07.15 |
---|---|
레드헷 리눅스에서 Apache + Oracle + PostgreSQL + MySQL + PHP + Tomcat + JAVA 서버구성1 (1) | 2009.07.15 |
레드헷계열 리눅스에서 PostgreSQL의 설치 (0) | 2009.07.15 |
레드헷 리눅스에서의 오라클의 자동 시동 (0) | 2009.07.15 |
레드헷 계열 리눅스에서 오라클11설치하기 (0) | 2009.07.14 |