如何在源代码安装后在Ubuntu中初始化和设置MySQL 5.1.73中的数据库?


1

为了使用Ruby 1.9.3 / Rails 3.2.2应用程序,我在我的Ubuntu机器上安装了MySQL 5.1( 这个脚本 )。但在那之后,我无法登录控制台或进行任何操作。

如何获取用户名和密码或列出数据库并查询?

Answers:



0

在检查您正在使用的脚本时,脚本中的代码如下所示

mysqld_safe -user=mysql &
/usr/bin/mysql_secure_installation

应该启动mysqld服务器作为用户(mysql)“AND”应该执行 mysql_secure_installation 脚本将帮助您逐步完成以下操作:

  • 重置mysql root密码
  • 删除匿名用户
  • 禁用对mysql的远程访问
  • 重新加载权限表。
  • 等等。 。

什么呢 DavidPostill 上面说的没有默认的root密码,所以当它要求你输入默认的root密码时,只需点击“Enter”即可。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.