为什么MYSQL装不上去

为什么MYSQL装不上去

步骤如下:
[root@linux tmp]# rpm -ivh MySQL-server-5.0.2-0.i386.rpm
warning: MySQL-server-5.0.2-0.i386.rpm: V3 DSA signature: NOKEY, key ID 5072e1f5
Preparing...                ########################################### [100%]
        package MySQL-server-5.0.2-0 is already installed
[root@linux tmp]# rpm -q MySQL-server-5.0.2-0.i386.rpm
package MySQL-server-5.0.2-0.i386.rpm is not installed
[root@linux tmp]# rpm -e MySQL-server-5.0.2-0.i386.rpm
error: package MySQL-server-5.0.2-0.i386.rpm is not installed
[root@linux tmp]#

我是Linux新手,各位谁知道是怎么回事,帮帮忙,先谢了      
你用rpm -Uvh MySQL-server-5.0.2-0.i386.rpm试试,也就是升级试试。      
还是不行

[root@linux tmp]# rpm -Uvh MySQL-server-5.0.2-0.i386.rpm
warning: MySQL-server-5.0.2-0.i386.rpm: V3 DSA signature: NOKEY, key ID 5072e1f5
Preparing...                ########################################### [100%]
        package MySQL-server-5.0.2-0 is already installed
[root@linux tmp]# rpm -q MySQL-server-5.0.2-0.i386.rpm
package MySQL-server-5.0.2-0.i386.rpm is not installed
[root@linux tmp]#      
rpm命令用错啦:
你安装了MySQL-server-5.0.2-0.i386.rpm,安装后的软件名并不叫MySQL-server-5.0.2-0.i386.rpm
可能叫MySQL-server 。你可以用下面的命令查询MySQL安装后的名字
rpm -qa | grep mysql
或rpm -qa | grep MySQL      
删除也是一样,不是删除MySQL-server-5.0.2-0.i386.rpm,而是删除MySQL-server-5.0.2-0,即:
#rpm -e MySQL-server-5.0.2-0      
[root@linux /]# rpm -qa|grep MySQL
MySQL-shared-5.0.2-0
MySQL-server-5.0.2-0
MySQL-bench-5.0.2-0
MySQL-client-5.0.2-0
MySQL-devel-5.0.2-0
[root@linux /]# mysqladmin version
mysqladmin: connect to server at 'localhost' failed
error: 'Access denied for user 'root'@'localhost' (using password: NO)'
[root@linux /]# mysql -u root -p
Enter password:
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 16 to server version: 5.0.2-alpha-standard
                                                                                
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
                                                                                
mysql> show databases
    -> asdf
    -> dfdfdfdf
    -> exit
    -> exit
    -> exit;
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that
corresponds to your MySQL server version for the right syntax to use near 'exit
exit
exit' at line 4
mysql> exit
Bye
[root@linux /]#      
退出可以用\q,这是SQL的标准。      
关键是其他的命令都不能执行啊
没反应      
你没有建库吧,重起一遍机器让系统自动建。      
重起了
装了N次了 都是这个问题
create database ttt
都不行
没任何反应