当前位置: 技术问答>linux和unix
安装mysql服务器端报错
来源: 互联网 发布时间:2016-09-16
本文导语: [root@localhost mysql]# rpm -ivh MySQL-server-5.1.49-1.glibc23.i386.rpm Preparing... ########################################### [100%] 1:MySQL-server ########################################### [100%] ERROR: 1004 Can...
[root@localhost mysql]# rpm -ivh MySQL-server-5.1.49-1.glibc23.i386.rpm
Preparing... ########################################### [100%]
1:MySQL-server ########################################### [100%]
ERROR: 1004 Can't create file '/tmp/#sql1ba0_1_0.frm' (errno: 13)
100804 16:24:11 [ERROR] Aborting
100804 16:24:11 [Note] /usr/sbin/mysqld: Shutdown complete
Installation of system tables failed! Examine the logs in
/var/lib/mysql for more information.
You can try to start the mysqld daemon with:
shell> /usr/sbin/mysqld --skip-grant &
and use the command line tool /usr/bin/mysql
to connect to the mysql database and look at the grant tables:
shell> /usr/bin/mysql -u root mysql
mysql> show tables
Try 'mysqld --help' if you have problems with paths. Using --log
gives you a log in /var/lib/mysql that may be helpful.
Please consult the MySQL manual section
'Problems running mysql_install_db', and the manual section that
describes problems on your OS. Another information source are the
MySQL email archives available at http://lists.mysql.com/.
Please check all of the above before mailing us! And remember, if
you do mail us, you MUST use the /usr/bin/mysqlbug script!
Starting MySQL.Manager of pid-file quit without updating file.[失败]
客户端安装后可以正常使用,请大虾指点
Preparing... ########################################### [100%]
1:MySQL-server ########################################### [100%]
ERROR: 1004 Can't create file '/tmp/#sql1ba0_1_0.frm' (errno: 13)
100804 16:24:11 [ERROR] Aborting
100804 16:24:11 [Note] /usr/sbin/mysqld: Shutdown complete
Installation of system tables failed! Examine the logs in
/var/lib/mysql for more information.
You can try to start the mysqld daemon with:
shell> /usr/sbin/mysqld --skip-grant &
and use the command line tool /usr/bin/mysql
to connect to the mysql database and look at the grant tables:
shell> /usr/bin/mysql -u root mysql
mysql> show tables
Try 'mysqld --help' if you have problems with paths. Using --log
gives you a log in /var/lib/mysql that may be helpful.
Please consult the MySQL manual section
'Problems running mysql_install_db', and the manual section that
describes problems on your OS. Another information source are the
MySQL email archives available at http://lists.mysql.com/.
Please check all of the above before mailing us! And remember, if
you do mail us, you MUST use the /usr/bin/mysqlbug script!
Starting MySQL.Manager of pid-file quit without updating file.[失败]
客户端安装后可以正常使用,请大虾指点
|
现在应该是安装成功了 你
/etc/init.d/mysqld start
然后看看报什么错误。
/etc/init.d/mysqld start
然后看看报什么错误。
|
权限问题。从报错信息来看,是生成/tmp/#sql1ba0_1_0.frm文件时报的权限错误。
你看看你系统下的/tmp目录的权限
你看看你系统下的/tmp目录的权限
|
你肯定啥时候把/tmp的权限给改错了!
chmod 1777 /tmp
然后再安装
chmod 1777 /tmp
然后再安装