MySQL安装常见错误整理

问题一:#mysql

ERROR 1045 :Access denied for user ‘root‘@‘localhost‘ (using password:NO)

问题原因:初始化问题

解决方法:删除data目录重建,重新初始化。

问题二:

当各位在安装、重装时出现could not start the service mysql error:0
原因: 卸载mysql时并没有完全删除相关文件和服务,需要手动清除

问题三:

make[2]: *** No rule to make target `/usr/lib/libcurses.so‘, needed by `bin/ccmake‘.  Stop.

make[1]: *** [Source/CMakeFiles/ccmake.dir/all] Error 2

make: *** [all] Error 2

解决:cp /usr/lib64/libcurses* /usr/lib

问题四:没有mysql用户和组.

mysql服务器进程是一般是以非root用户运行,为了安全起见尽量不使用root用户来运行.

[[email protected] bin]# ./mysqld_safe  --basedir=/usr/local/mysql --datadir=/usr/local/mysql/data
140704 16:10:10 mysqld_safe Logging to ‘/usr/local/mysql/data/db135.err‘.
chown: “mysql”: 无效的用户

启动mysql服务器进程,没有指定用户,服务器进程会以mysql用户来运行,如果没有该用户则报错.

问题五:

[[email protected]db135 mysql]# ./scripts/mysql_install_db  --user=mysql

Installing MySQL system tables...
140704 16:13:37 [ERROR] ./bin/mysqld: Can‘t find file: ‘./mysql/db.frm‘ (errno: 13)
ERROR: 1017  Can‘t find file: ‘./mysql/db.frm‘ (errno: 13)
140704 16:13:37 [ERROR] Aborting

140704 16:13:37 [Note] ./bin/mysqld: Shutdown complete

Installation of system tables failed!  Examine the logs in
./data for more information.

原因:权限错误.在安装之前需要更改安装目标所有者和组为mysql,否则在初始化脚本执行进报错.

解决:chown -R mysql.mysql /appli


cation/mysql/

时间: 2024-10-23 03:54:19

MySQL安装常见错误整理的相关文章

MySQL安装常见错误及解决方案

错误1:wizard安装最后一页,出现cannot create Windows service for mysql.error:0 错误 解决方法:打开命令行 输入 sc delete mysql 命令即    C:>sc delete mysql    [SC] DeleteService SUCCESS 重起电脑,或者卸载后重启再安装,这样就好了.我是卸载后重启的. 卸载重新安装要注意一个问题,在控制面板中卸载后,要去c:\Documents and Settings\All Users\

mysql 主从复制常见错误

Last_IO_Error: Fatal error: The slave I/O thread stops because master and slave have equal MySQL server ids; these ids must be different for replication to work (or the --replicate-same-server-id option must be used on slave but this does not always

nagios 安装常见错误                  

一.启动时报错 "Starting nagios:This account is currently not available" 解决方法: 修改/etc/passwd 将/sbin/nologin改成/bin/bash 二.nagios安装好后,网页访问出现如下错误: 无权查看任何主机的信息. 请检查HTTP服务器关于该CGI的访问权限设置. 解决办法: vi /usr/local/nagios/etc/cgi.cfg 将use_authentication的值改为0. use_a

【MySQL】常见错误与常用命令的集锦

[背景介绍] 在使用SQL Server数据库期间,想必大家一定都有过解决各种问题的经历了,很多时候,都会在大家的博客中看到问题与解决方案.现在开发使用的是MySQL数据库,现在来看,发现自己在MySQL中的经历越来越多.前两天,自己电脑的MySQL数据库出问题了,折腾了我好几个小时~~ 这篇博客就将把之前遇到的和这次遇到的错误记录下来,以后也可以更好更快的找到解决办法吧. [常见错误] (1) windows mysql提示:1045 access denied for user'root'@

Hibernate常见错误整理

Hibernate常见错误合集 1.错误:object references an unsaved transient instance - save the transient instance before flushing: com.xxxx.bean.java.Sysblog; nested exception is org.hibernate.TransientObjectException: object references an unsaved transient instanc

Mysql——安装server错误:cannot create windows service

在安装到最后一步,点击”execute“按钮时,出现错误cannot create windows service for mysql.error:0 解决方法: 在桌面上找到“MyComputer“,右键选择“Manage”,然后选择”Service and Applications“,然后选择”services“,找到”MySQL“服务: 右键”Stop“此服务后.以管理员身份打开cmd:   输入命令:sc delete mysql 此命令是删除”MySQL“服务.刷新”services“

JNI常见错误整理

ndk开发常见错误1. android.mk文件不存在 $ ndk-buildAndroid NDK: Your APP_BUILD_SCRIPT points to an unknown file: ./jni/Android.mk /cygdrive/h/heima6/jni2/ziliao/android-ndk-r7b/build/core/add-application.mk:133: *** Android NDK: Aborting... . 停止. 2.android.mk文件

php源代码安装常见错误与解决办法分享

错误:configure: error: libevent >= 1.4.11 could not be found 解决:yum -y install libevent libevent-devel 错误:configure: error: Please reinstall the mysql distributio 解决:yum -y install mysql-devel 错误:make: *** [sapi/fpm/php-fpm] error 1 解决:用make ZEND_EXTRA

关于mysql安装的错误

本人新手,刚接触Java三个月.由于学习中需要用到mysql数据库,故下载安装,下载安装过程中出现了很多的问题.本人在百度上看了很多论坛博客的办法,得到启发.现问题已经解决,本着技术共享的原则,现将我处理错误的方法记下,供大家参考. 是按照慕课网上一步步下载安装,mysql版本是5.5. 最后重新启动mysql服务的时候显示 “系统错误2,找不到指定文件”. 期间还遇到过 “1067 进程意外终止的错误”,寻找了网上很多的办法都没有解决我这两个问题. 当然最后问题得到解决,但是我并不清楚其中的原