[root@centos ~]# mysql -u root -p Enter password: mysql_root_pass ←mysqlのrootパスワードを入力 Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 54 Server version: 5.0.77 Source distribution Type 'help;' or '\h' for help. Type '\c' to clear the buffer. mysql> CREATE DATABASE auth_db; mysql> USE auth_db; mysql> CREATE TABLE users (user CHAR(30) NOT NULL,passwd CHAR(20) NOT