"CentOS MySQL 설치"의 두 판 사이의 차이

44번째 줄: 44번째 줄:


Complete!
Complete!
</source>
==서비스 시작==
<source lang='dos'>
[root@jmnote ~]# service mysqld start
Initializing MySQL database:  Installing MySQL system tables...
OK
Filling help tables...
OK
To start mysqld at boot time you have to copy
support-files/mysql.server to the right place for your system
PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER !
To do so, start the server, then issue the following commands:
/usr/bin/mysqladmin -u root password 'new-password'
/usr/bin/mysqladmin -u root -h jmnote password 'new-password'
Alternatively you can run:
/usr/bin/mysql_secure_installation
which will also give you the option of removing the test
databases and anonymous user created by default.  This is
strongly recommended for production servers.
See the manual for more instructions.
You can start the MySQL daemon with:
cd /usr ; /usr/bin/mysqld_safe &
You can test the MySQL daemon with mysql-test-run.pl
cd /usr/mysql-test ; perl mysql-test-run.pl
Please report any problems with the /usr/bin/mysqlbug script!
                                                          [  OK  ]
Starting mysqld:                                          [  OK  ]
</source>
</source>



2013년 6월 27일 (목) 00:42 판

리눅스 MySQL 설치

1 사전 확인

[root@jmnote ~]# rpm -qa | grep ^mysql-server
→ MySQL DB가 설치되지 않았다.

2 yum으로 설치

[root@jmnote ~]# yum install mysql-server
... (생략)
===================================================================================================================================
 Package                           Arch                      Version                              Repository                  Size
===================================================================================================================================
Installing:
 mysql-server                      x86_64                    5.1.69-1.el6_4                       updates                    8.7 M
Installing for dependencies:
 mysql                             x86_64                    5.1.69-1.el6_4                       updates                    907 k
 perl-DBD-MySQL                    x86_64                    4.013-3.el6                          base                       134 k
 perl-DBI                          x86_64                    1.609-4.el6                          base                       705 k
Updating for dependencies:
 mysql-libs                        x86_64                    5.1.69-1.el6_4                       updates                    1.2 M

Transaction Summary
===================================================================================================================================
Install       4 Package(s)
Upgrade       1 Package(s)

Total download size: 12 M
Is this ok [y/N]: y
... (생략)
Installed:
  mysql-server.x86_64 0:5.1.69-1.el6_4                                                                                             

Dependency Installed:
  mysql.x86_64 0:5.1.69-1.el6_4            perl-DBD-MySQL.x86_64 0:4.013-3.el6            perl-DBI.x86_64 0:1.609-4.el6           

Dependency Updated:
  mysql-libs.x86_64 0:5.1.69-1.el6_4                                                                                               

Complete!

3 서비스 시작

[root@jmnote ~]# service mysqld start
Initializing MySQL database:  Installing MySQL system tables...
OK
Filling help tables...
OK

To start mysqld at boot time you have to copy
support-files/mysql.server to the right place for your system

PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER !
To do so, start the server, then issue the following commands:

/usr/bin/mysqladmin -u root password 'new-password'
/usr/bin/mysqladmin -u root -h jmnote password 'new-password'

Alternatively you can run:
/usr/bin/mysql_secure_installation

which will also give you the option of removing the test
databases and anonymous user created by default.  This is
strongly recommended for production servers.

See the manual for more instructions.

You can start the MySQL daemon with:
cd /usr ; /usr/bin/mysqld_safe &

You can test the MySQL daemon with mysql-test-run.pl
cd /usr/mysql-test ; perl mysql-test-run.pl

Please report any problems with the /usr/bin/mysqlbug script!

                                                           [  OK  ]
Starting mysqld:                                           [  OK  ]

4 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}