MySQL インストール2008/08/25 |
データベースサーバーに MySQL をインストールします。 |
www:~# aptitude -y install mysql-server-5.0 www:~# mysql -u root # MySQLにログイン Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 2 to server version: 5.0.22 Type 'help;' or '\h' for help. Type '\c' to clear the buffer. # ユーザ情報表示 mysql> select user,host,password from mysql.user; 4 rows in set (0.00 sec) # rootパスワード設定 mysql> set password for root@localhost=password('password'); Query OK, 0 rows affected (0.00 sec) # rootパスワード設定 mysql> set password for root@www'=password('password'); Query OK, 0 rows affected (0.00 sec) # ユーザ情報表示 mysql> select user,host,password from mysql.user; 4 rows in set (0.00 sec) # ログアウト mysql> exit Bye www:~# mysql -u root -p # rootログイン Enter password: # パスワード入力 Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 4 to server version: 5.0.22 Type 'help;' or '\h' for help. Type '\c' to clear the buffer. mysql> exit Bye |
Sponsored Link |