Ubuntu 12.04
Sponsored Link

MySQL インストール2012/06/25

  データベースサーバーに MySQL をインストールします。
root@www:~#
aptitude -y install mysql-server-5.5
# インストール中、rootパスワードの設定を求められる

root@www:~#
mysql -u root -p
   
# MySQLにログイン

Enter password:    
# インストール中に設定したrootパスワード入力

Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 41
Server version: 5.5.22-0ubuntu1 (Ubuntu)

Copyright (c) 2000, 2011, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

# ユーザ情報表示

mysql>
select user,host,password from mysql.user;

# 匿名ユーザを削除しておく

mysql>
delete from mysql.user where user='';

Query OK, 2 rows affected (0.00 sec)
mysql>
exit

Bye
関連コンテンツ