码迷,mamicode.com
首页 > 数据库 > 详细

SuSE11安装MySQL5.1.73:RPM安装方式(超简单入门级安装)

时间:2018-07-25 17:07:56      阅读:296      评论:0      收藏:0      [点我收藏+]

标签:server   hle   cli   lte   base   linux   created   --   linu   

注:此安装过程只有关键步骤,仅适合入门学习使用


一、 环境准备

    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安装方式(超简单入门级安装)

标签:server   hle   cli   lte   base   linux   created   --   linu   

原文地址:http://blog.51cto.com/10759919/2150065

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!