C:>sc delete mysql
[SC]
DeleteService SUCCESS
重起电脑,或者卸载后重启再安装。
卸载重新安装要注意一个问题,在控制面板中卸载后,要去c:\Documents and Settings\All
Users\Application
Data目录下把Mysql文件夹删掉。里面可能记载了你卸载的配置信息,下次安装时会有影响。
错误2:在让输入管理员输入密码时除了password和confirm
password之外还有一行current assword。
这说明你安装之前没有把我第1条中说的目录下把Mysql文件夹删除。不知道是否影响后续使用,可能记得密码的话没关系。另附带一句,管理员密码是自己设的,用户名则为默认root。
安装成功后可测试如下:打开mysql
command line client,输入密码,出现
Welcome to the MySQL monitor. Commands end with
or \g.
Your MySQL connection id is 3
Server version: 5.1.33-community
MySQL Community Server (GPL)
Type 'help' or '\h' for help. Type '\c' to
clear the buffer.
mysql>
则安装成功!
错误3:mysql server
configuration失败。
在配置向导中查看错误提示有如下语句:
mysql-server-5.5-win32:60 - Adding firewall rule for MySQL55 on port 3306.
mysql-server-5.5-win32:66 - Adding firewall rule
failed.
表示防火墙安装失败。
查看安装日志能找到以下语句:
mysql-installer Information:
10 : Attempting to create firewall rule with command: netsh.exe firewall add
portopening protocol=TCP port=3306 profile=ALL name=MySQL55 mode=ENABLE
scope=ALL
mysql-installer Information: 10 : Unexpected response from
netsh: 确定。
mysql-installer Information: 10 : Attempting to create
firewall rule with command: netsh.exe advfirewall firewall add rule name=”Port
3306” protocol=TCP localport=3306 dir=in action=allow
mysql-installer
Information: 10 : Unexpected response from netsh: 下列命令没有找到: advfirewall firewall
add rule name=”Port 3306” protocol=TCP localport=3306 dir=in
action=allow。
这种情况说明mysql的安装对中文系统支持得不好,不能识别
netsh.exe返回的“确定”信息,继而运行能在其他windows平台上运行的netsh.exe
advfirewall命令(该命令xp不支持,所以报找不到该命令的错误。
解决办法有两个:
①将自己的 *** 作系统的语言设置为英文,然后重新安装mysql 。具体的可以进入控制面板->区域和语言
中去更改;另外,检查当前用户是否有启动防火墙的权限,在计算机服务中查看Application Layer Gateway
Service的属性,查看登录选项卡中的用户是否是当前用户。
②检查防火墙端口,如果已经添加成功了,则不作处理,如果没有成功添加,则自己手动在防火墙中添加端口。
错误4:安装成功之后,只能通过mysql
5.5 command line client 连接localhost的mysql
server,而不能通过workbench或其他客户端工具进行远程连接mysql server。
关键字:不能远程连接mysql
server。
原因:
①没有开端口,参见前一条解决。
②用户没有授权远程连接。
③mysql
server不允许远程连接。
对于用户没有授权远程连接,可以给用户授权,例如默认的root用户,可以在mysql 5.5 command
line client 中输入如下命令:
//选择数据库
mysql>use mysql
//给用户授权,yourpassword字段用你的密码代替
mysql>grant all priileges on *.* to
identified by 'yourpassword'
//刷新系统权限表
mysql>flush
privileges
//查看是否授权成功
mysql>show grants for
roots
如果出现刚刚的授权,则表示成功。不成功的话,自己再添加一个新用户试试,添加用户的命令:
insert into
mysql.user(Host,User,Password,ssl_cipher,x509_issuer,x509_subject)
values("%","newuser",password("newpassword"),'','','')
对于③mysql
server不允许远程连接的解决办法是,找到自己的my.ini,在[mysqld]下增加一行语句:
bind-address=0.0.0.0
表示不绑定IP,重启你的Mysql服务。
错误5:配置文件my.ini的位置
MySQL配置向导将my.ini文件放置在MySQL服务器的安装目录中。这将有助于将配置文件和具体的服务器实例相
关联。为了保证MySQL服务器知道到哪里查找my.ini文件,和下面内容类似的参数将会被作为服务安装的一部分
传递给MySQL服务器:--defaults-file="C:\Program Files\MySQL\MySQL Server 5.5\my.ini
C:\Program Files\MySQL\MySQL Server
5.5可以被指向MySQL服务器的安装路径所代替。
编辑my.ini文:可以使用文本编辑器打开该文件同时做出必要的编辑和修改。你也可以以MySQL
Administrator的应用程序来修 改服务器配置。
MySQL客户端和应用程序,例如mysql命令行客户端和mysqldump并不能确定位于服务器安装目录中的my.ini文件
的位置。为了配置客户端和应用程序,根据你的Windows版本的不同,在C:\Windows下或者在C:\WINNT目录下生 成新的文件my.ini 文件
安装步骤:
1.双击Setup.exe文件,开始mysql的安装。出现下面的窗口。
2.点击Next开始下一步安装。默认是Typical,选择Custom,因为Typical模式不允许改变安装路径,只能安装在C盘。
3.选择组件和更改文件夹位置,组件可以默认的,位置要选择Change来改变(注意:安装mysql的路径中,不能含有中文)。
4.点击Install开始安装。
MySQL 是一个关系型数据库,由瑞典 MySQL AB 公司开发,目前属于 Oracle 旗下公司。MySQL 最流行的关系型数据库管理系统,在 WEB 应用方面 MySQL 是最好的 RDBMS 应用软件之一。MySQL 是一种关联数据库管理系统,关联数据库将数据保存在不同的表中,而不是将所有数据放在一个大仓库内,这样就增加了速度并提高了灵活性。
MySQL 所使用的 SQL 语言是用于访问数据库的最常用标准化语言。MySQL 软件采用了双授权政策(本词条"授权政策"),它分为社区版和商业版,由于其体积小、速度快、总体拥有成本低,尤其是开放源码这一特点,一般中小型网站的开发都选择 MySQL 作为网站数据库。由于其社区版的性能卓越,搭配 PHP ,Linux和 Apache 可组成良好的开发环境,经过多年的web技术发展,在业内被广泛使用的一种web服务器解决方案之一,称之为LAMP。
XP系统安装mysql5.7报错,报错信息请见附件!mysql-server-5.7-win32:6 - Looking for valid template
mysql-server-5.7-win32:12 - Found valid template.
mysql-server-5.7-win32:18 - Attempting to process template.
mysql-server-5.7-win32:25 - Processed template.
mysql-server-5.7-win32:31 - Attempting to configure service.
mysql-server-5.7-win32:37 - Configured service.
mysql-server-5.7-win32:43 - Attempting to start service.
mysql-server-5.7-win32:100 - Unable to configure service.
mysql-server-5.7-win32:100 - Product configuration controller finished configuration.
examples-5.7:10 - Checking if there are any features installed that need configuration.
examples-5.7:100 - Unable to configure as the server product in our catalog is not running
examples-5.7:100 - Product configuration controller finished configuration.
Action 21:29:16: INSTALL.
1: MySQL Server 5.7 2: {FB517CC7-2308-4F30-9830-23C722F3EDD0}
Action 21:29:16: FindRelatedProducts. Searching for related applications
Action 21:29:16: AppSearch. Searching for installed applications
Action 21:29:16: LaunchConditions. Evaluating launch conditions
Action 21:29:16: ValidateProductID.
Action 21:29:16: CostInitialize. Computing space requirements
Action 21:29:16: FileCost. Computing space requirements
Action 21:29:16: CostFinalize. Computing space requirements
Action 21:29:16: MigrateFeatureStates. Migrating feature states from related applications
Action 21:29:16: InstallValidate. Validating install
Min: 0 Max: 3288
和这些东西关系不是很大,
正确的解决方式:
1、将Current Root Password设置为空,这可能是mysql自身的问题,不填写这一项。
2、继续安装,如果服务还是卡住,请查看电脑的服务,mysqlXXX,有右键---属性---登录选项卡---选择本地系统账户,给允许服务与桌面交互打勾。
3、然后在安装mysql界面,try again安装就可以了。
4、切记不能填写Current Root Password
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)