`

mysql 安装(各种不同版本)

阅读更多
linux-6r89:/usr/local # rpm -ivh MySQL-server-community-6.0.10-0.sles10.i586.rpm
Preparing...                ########################################### [100%]
   1:MySQL-server-community ########################################### [100%]
mysql                     0:off  1:off  2:on   3:on   4:on   5:on   6:off
090422 17:01:19 [Note] Falcon: unable to open system data files.
090422 17:01:19 [Note] Falcon: creating new system data files.
090422 17:01:21 [Warning] Forcing shutdown of 2 plugins
090422 17:01:22 [Warning] Forcing shutdown of 2 plugins

PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER !
To do so, start the server, then issue the following commands:

/usr/bin/mysqladmin -u root password 'new-password'
/usr/bin/mysqladmin -u root -h linux-6r89 password 'new-password'

Alternatively you can run:
/usr/bin/mysql_secure_installation

which will also give you the option of removing the test
databases and anonymous user created by default.  This is
strongly recommended for production servers.

See the manual for more instructions.

Please report any problems with the /usr/bin/mysqlbug script!

The latest information about MySQL is available at http://www.mysql.com/
Support MySQL by buying support/licenses from http://shop.mysql.com/

Starting MySQL.                                                       done
Giving mysqld 2 seconds to start




/usr/bin/mysqladmin -u root password newpassword  //changepwd


mysqld_safe --user=mysql --skip-grant-tables --skip-networking &

/usr/bin/mysqladmin variables  //see character



linux-q1og:/usr/local # rpm -ivh MySQL-server-community-5.1.37-0.sles10.i586.rpm
Preparing...                ########################################### [100%]
   1:MySQL-server-community ########################################### [100%]
mysql                     0:off  1:off  2:on   3:on   4:on   5:on   6:off
090824 23:49:14 [Warning] Forcing shutdown of 2 plugins
090824 23:49:14 [Warning] Forcing shutdown of 2 plugins

PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER !
To do so, start the server, then issue the following commands:

/usr/bin/mysqladmin -u root password 'new-password'
/usr/bin/mysqladmin -u root -h linux-q1og password 'new-password'

Alternatively you can run:
/usr/bin/mysql_secure_installation

which will also give you the option of removing the test
databases and anonymous user created by default.  This is
strongly recommended for production servers.

See the manual for more instructions.

Please report any problems with the /usr/bin/mysqlbug script!

The latest information about MySQL is available at http://www.mysql.com/
Support MySQL by buying support/licenses from http://shop.mysql.com/

Starting MySQL.                                                       done
Giving mysqld 2 seconds to start



rpm -qa | grep -i mysql

MySQL-server-community-5.1.37-0.sles10
linux-q1og:/ # rpm -ev MySQL-server-community-5.1.37-0.sles10
mysql                     0:off  1:off  2:off  3:off  4:off  5:off  6:off



linux-q1og:/usr/local # rpm -ivh MySQL-server-community-5.0.85-0.sles10.i586.rpm
Preparing...                ########################################### [100%]
   1:MySQL-server-community ########################################### [100%]
mysql                     0:off  1:off  2:on   3:on   4:on   5:on   6:off
ERROR: 1136  Column count doesn't match value count at row 1
090824 17:48:07 [ERROR] Aborting

090824 17:48:07 [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:
/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.

The latest information about MySQL is available on the web at
http://www.mysql.com
Please consult the MySQL manual section: 'Problems running mysql_install_db',
and the manual section that describes problems on your OS.
Another information source is the MySQL email archive.
Please check all of the above before mailing us!
And if you do mail us, you MUST use the /usr/bin/mysqlbug script!
Starting MySQL.                                                       done
Giving mysqld 2 seconds to start
linux-q1og:/usr/local # rpm -ivh MySQL-client-community-5.0.85-0.sles10.i586.rpm
Preparing...                ########################################### [100%]
   1:MySQL-client-community ########################################### [100%]
linux-q1og:/usr/local # mysql -u root
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 1
Server version: 5.0.85-community MySQL Community Edition (GPL)

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql>


/usr/bin/mysqladmin -u root password 123456;  //change password


mysql> GRANT ALL PRIVILEGES ON *.* TO 'root'@'%'WITH GRANT OPTION;
Query OK, 0 rows affected (0.00 sec)

mysql> FLUSH PRIVILEGES;
Query OK, 0 rows affected (0.00 sec)

mysql> EXIT;
Bye


GRANT ALL PRIVILEGES ON *.* TO 'root'@'192.168.1.1' IDENTIFIED BY 'zpark' WITH GRANT OPTION;
分享到:
评论

相关推荐

    一台机器安装不同版本mysql

    详细介绍了 一台机器安装不同版本mysql的过程 逐步介绍 很简单明了 如有需要 请参照

    一台电脑同时安装MySQL5.x版本和MySQL8.x版本

    有时,由于工作需求或测试环境的设置,我们可能需要在同一台计算机上安装不同版本的MySQL,例如MySQL5.x和MySQL8.x。这篇文章将详细介绍如何在一台电脑上安全、有效地同时安装这两个版本。 首先,了解为什么需要...

    mysql安装配置教程(x64、arm、windows三平台)

    本教程将涵盖x64、ARM架构以及Windows三个平台上的MySQL安装与配置步骤。 首先,我们来看**x64架构**,这里以CentOS 7.6为例。在Linux环境下,MySQL的安装通常通过包管理器进行。对于x64系统,可以使用`yum`或`dnf`...

    mysql安装版win64位

    标题中的“mysql安装版win64位”指的是适用于Windows 64位系统的MySQL安装程序。通常,MySQL的安装文件采用MSI(Microsoft Installer)格式,这是一种由微软开发的软件安装包格式,能够方便地进行软件部署和管理。 ...

    mysql5.5安装版本

    1. 下载:可以从MySQL官方网站获取适用于不同操作系统的安装包,例如Windows用户可以选择msi格式的安装文件,如"mysql-5.5.58-winx64.msi",这是一个针对64位Windows系统的安装程序。 2. 运行安装程序:双击下载的...

    mysql 安装文档教程

    不同的安装类型将安装不同的组件和服务。 知识点4: 选择安装类型 在安装过程中需要选择安装类型。安装类型的选择将影响安装的组件和服务。例如,开发缺省安装将安装最基本的MySQL组件,而服务器安装将安装更多的...

    linux下启动多个不同版本的mysql服务.docx

    Linux 下启动多个不同版本的 MySQL 服务 在 Linux 系统中,启动多个不同版本...启动多个不同版本的 MySQL 服务器需要注意安装和配置的细节,遵循这些细节可以避免常见的问题和错误,提高 MySQL 服务器的性能和稳定性。

    一台服务器安装两个版本的mysql(原创).docx

    在生产环境中,安装多个版本的 MySQL 服务器是一种常见的需求,特别是在需要同时运行不同版本的应用程序时。这篇文章将指导您如何在一台服务器上安装两个版本的 MySQL 服务器,并对它们进行配置和管理。 安装二进制...

    mysql版本升级方法

    随着时间的推移和技术的发展,MySQL的新版本不断发布,修复了旧版本中存在的各种bug,并增加了更多实用的功能。因此,适时地对MySQL进行版本升级对于确保系统的稳定性和安全性是非常必要的。 #### 二、升级前准备 ...

    mysql安装和安装教程

    ### MySQL安装与配置详解 #### 一、MySQL简介 MySQL是一种流行的关系型数据库管理系统(RDBMS),由瑞典MySQL AB公司开发,目前属于Oracle公司。它以其高性能、高可靠性及易于使用等特点,在全球范围内被广泛应用于...

    MySQL安装指南.pdf

    MySQL是一种流行的开源关系型数据库管理系统(RDBMS),由瑞典的MySQL AB公司开发,后来被Sun ...随着您对MySQL的了解越来越深,您将会发现MySQL是一个功能强大且灵活的数据库系统,适用于各种不同的应用场景。

    linux下启动多个不同版本的mysql服务.pdf

    - 编译源码安装:下载不同版本的MySQL源代码,然后分别编译并安装。这种方法允许更多的自定义配置,但需要更多的系统资源和时间。 2. 配置独立的数据目录 - 每个版本的MySQL需要有自己的数据目录,这样它们的数据...

    MySQL 8.4.0安装程序

    首先,它作为MySQL的第一个LTS(长期支持)版本,肯定有很多值得称赞的地方。长期支持意味着它会有更长时间的更新和安全补丁支持,对于追求系统稳定性和可靠性的用户来说,真是个好消息。 MySQL8.4.0调整了与InnoDB...

    mysql客户端官网历史版本下载

    "mysql客户端官网历史版本下载"这一主题就是关于如何从MySQL官方网站获取不同版本的客户端软件。 MySQL的官方下载页面提供了一个全面的资源库,包括最新的稳定版、开发版以及过去发布的各个版本。这些版本可能包含...

    图解MYSQL安装指南

    - 下载MySQL安装程序:访问MySQL官方网站,根据你的操作系统版本下载相应版本的MySQL Community Server。 - 运行安装程序:双击下载的安装文件,按照向导提示进行操作。 - 自定义安装:选择“Custom”选项,以便...

    mysql8.0审计插件Mcafee安装详解

    确定 MySQL 版本非常重要,因为不同的版本需要选择对应版本的插件。在生产环境中选择软件的版本非常重要:第一要选择永久支持版本;第二尽量不要使用最新版本,除非老版本无法满足需求。 然后,需要选择 Mcafee ...

    mysql各个版本.rar

    这个压缩包包含了不同版本的MySQL安装程序,包括5.7.11版,8.0.17版,以及8.0.20线上版,这为我们提供了对比和学习不同版本MySQL的机会。 首先,我们看到的是`mysql-installer-community-8.0.20.0.msi`,这是一个...

Global site tag (gtag.js) - Google Analytics