SuSE11安装MySQL5.1.73:RPM安装方式(超简单入门级安装)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SuSE11安装MySQL5.1.73:RPM安装方式(超简单入门级安装)相关的知识,希望对你有一定的参考价值。
注:此安装过程只有关键步骤,仅适合入门学习使用
一、 环境准备
64位操作系统,SuSE版本11sp3。(注:kingtry是我的主机名)
kingtry:~ # uname -a Linux kingtry 3.0.76-0.11-default #1 SMP Fri Jun 14 08:21:43 UTC 2013 (ccab990) x86_64 x86_64 x86_64 GNU/Linux kingtry:~ # cat /etc/SuSE-release SUSE Linux Enterprise Server 11 (x86_64) VERSION = 11 PATCHLEVEL = 3
二、 软件准备
mysql-client-community-5.1.73-1.sles11.x86_64.rpm
MySQL-server-community-5.1.73-1.sles11.x86_64.rpm
三、 安装过程
kingtry:~ # rpm -ivh MySQL-server-community-5.1.73-1.sles11.x86_64.rpm MySQL-client-community-5.1.73-1.sles11.x86_64.rpm Preparing... ########################################### [100%] 1:MySQL-client-community ########################################### [ 50%] 2:MySQL-server-community ########################################### [100%] insserv: Service network is missed in the runlevels 4 to use service mysql mysql 0:off 1:off 2:on 3:on 4:on 5:on 6:off 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 kingtry 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! Starting MySQL.. done Giving mysqld 2 seconds to start
四、安装完成
超级简单的安装过程,只需上面一个命令即可,且安装完之后服务也自动启动了。
当前版本root密码为空
kingtry:~ # mysql Welcome to the MySQL monitor. Commands end with ; or g. Your MySQL connection id is 1 Server version: 5.1.73-community MySQL Community Server (GPL) Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Type 'help;' or 'h' for help. Type 'c' to clear the current input statement. mysql> show databases; +--------------------+ | Database | +--------------------+ | information_schema | | mysql | | test | +--------------------+ 3 rows in set (0.00 sec) mysql>
以上是关于SuSE11安装MySQL5.1.73:RPM安装方式(超简单入门级安装)的主要内容,如果未能解决你的问题,请参考以下文章