CentOS 6.2 환경에서 yum 명령어를 이용한 MySQL 설치와 root 패스워드 초기화 방법Database2012. 11. 28. 16:37
Table of Contents
CentOS 6.2에서 yum을 이용한 MySQL 설치는 다음 명령어로 설치가 가능하다.
명령어 예제)
yum -y install mysql mysql-server mysql-connector-odbc mysql-devel
MySQL 서버 설치 후 /etc/init.d/mysqld 를 실행하여, 서버를 구동한다.
초기 MySQL의 root 권한에 대한 패스워드 초기화는 아래의 명령어를 순차적으로 실행하면 된다.
mysql> use mysql;
mysql> update user set password=password('123456') where user='root';
Query OK, 2 rows affected (0.03 sec)
Rows matched: 2 Changed: 2 Warnings: 0
mysql> flush privileges;
반응형
'Database' 카테고리의 다른 글
MySQL 데이터베이스에서 mysqldump 명령어를 이용한 procedure, function, trigger 포함 백업 및 복구 방법 (0) | 2015.06.13 |
---|---|
MySQL에서 관리자(root) 비밀번호 생성 명령어 (0) | 2014.10.08 |
MySQL 데이터베이스 백업(dump) 명령어 (0) | 2012.05.23 |
MySQL Database 관리자(root) 계정 외부 접속 권한 설정하기 (0) | 2012.05.23 |
Windows 환경에서 MongoDB 설치 (0) | 2012.05.23 |
@kogun82 :: Ctrl+C&V 로 하는 프로그래밍
Korean BioInformation Center(KOBIC) Korea Research Institute of Bioscience & Biotechnology Address: #52 Eoeun-dong, Yuseong-gu, Deajeon, 305-806, KOREA +82-10-9936-2261 e-mail: kogun82@kribb.re.kr Blog: kogun82.tistory.com Homepage: www.kobic.re.kr
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!