mysqlのインストールを行うよ # apt-get install MySQL-server # apt-get install MySQL-Max # apt-get install MySQL-client # apt-get install MySQL-shared # apt-get install perl-DBD-MySQL # mysqladmin -u root password '×××' # mysql -u root -p rootでログイン Enter password: パスワードを入力 Welcome to the MySQL monitor.ツꀀ Commands end with ; ツꀀor \g.Your MySQL connection id is 3 to server version: 4.0.23a-Max Type 'help;' or '\h' for help. Type '\c' to clear the buffer. mysql> grant select,insert,delete,update,create,drop,file,alter,index on *.* to db_user@localhost identified by '×××'; Query OK, 0 rows affected (0.00 sec) 一般ユーザーを作成 mysql> flush privileges; ユーザーの追加を有効に Query OK, 0 rows affected (0.02 sec) mysql> create database mt3_db; データベースを作成 Query OK, 1 row affected (0.03 sec) mysql> drop database test; 不要なデータベースを削除 Query OK, 0 rows affected (0.10 sec) mysql> show databases; データベースのリストを表示 +----------+ | Database | +----------+ | mt3_dbツꀀ ツꀀ| | mysqlツꀀ ツꀀ | +----------+ 2 rows in set (0.00 sec) mysql> exit MySQLをログアウト Bye # mysql -u db_user -p 作成したユーザーでログイン Enter password: パスワードを入力 Welcome to the MySQL monitor.ツꀀ Commands end with ; ツꀀor \g.Your MySQL connection id is 3 to server version: 4.0.23a-Max Type 'help;' or '\h' for help. Type '\c' to clear the buffer. mysql> exit MySQLをログアウトbye #
mysql