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>

    

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

时间: 2024-11-08 21:09:43

SuSE11安装MySQL5.1.73:RPM安装方式(超简单入门级安装)的相关文章

Centos7.5安装mysql5.7.24二进制包方式部署(keepalived+主从复制)

一.环境准备: 操作系统:CentOS Linux release 7.5.1804 (Core) mysql版本:mysql-5.7.24-linux-glibc2.12-x86_64.tar.gz主库:172.16.8.247从库:172.16.8.249主机名:172.16.8.247 qas-zabbix-node01172.16.8.249 qas-zabbix-node02172.16.8.248 vip 二.mysql5.7安装及主从复制配置 主库:172.16.8.247从库:1

Centos7.5安装mysql5.7.24二进制包方式部署(主从复制)

一.环境准备: 操作系统:CentOS Linux release 7.5.1804 (Core) mysql版本:mysql-5.7.24-linux-glibc2.12-x86_64.tar.gz主库:172.16.8.247从库:172.16.8.249主机名:172.16.8.247 qas-zabbix-node01172.16.8.249 qas-zabbix-node02 二.mysql5.7安装 主库:172.16.8.247从库:172.16.8.249数据安装参考:一.Cen

超简单Windows安装Scrapy (仅需一步)

网上很多关于windows安装Scrapy的教程都非常的繁琐,请看我给大家分享的教程,非常简单 一步完成. 超简单的安装方法: 下载地址: https://www.continuum.io/downloads Windows用户只修要点击那个Download for 旁边的Win标徽的图标即可进入Windows版本下载页 给出懒人链接: https://www.continuum.io/downloads#windows 根据不同的系统版本下载对应的程序版本 放出 Anaconda3-4.3.1

如何用CentOS7安装MySQL5.7(RPM安装)

 一. MySQL 5.7 主要特性: 原生支持 Systemd 更好的性能:对于多核 CPU .固态硬盘.锁有着更好的优化 更好的 InnoDB 存储引擎 更为健壮的复制功能:复制带来了数据完全不丢失的方案,传统金融客户也可以选择使用MySQL 数据库. 注: mysql-5.6.3 已经支持了多线程的主从复制 新增 sys 库:以后这会是 DBA 访问最频繁的库 二.MySQL版本 SQL结构化查询语言 社区版Community Edition.商业版Enterprise Edition A

CentOS 6.0 安装mysql-5.1.73过程

一.安装环境 CentOS-6.0-i386-minimal.iso 内核:2.6.32-71.el6.i686 mysql版本:5.1.73 二.安装步骤 useradd -M -s /sbin/nologin mysql mkdir -p /app/tools cd /app/tools/ wget http://dev.mysql.com/get/Downloads/MySQL-5.1/mysql-5.1.73.tar.gz tar zxf mysql-5.1.73.tar.gz cd m

程序包管理rpm、yum与简单编译安装程序

Linux程序包管理 Linux中软件的安装主要有两种形式:一种是直接下载源代码包自行编译后安装,另一种直接获取rpm软件包进行安装. 程序的组成部分: 二进制程序:程序的主体文件,比如我们运行一个ls命令就是一个二进制程序. 库文件:程序的公用功能模块,比如A程序需要用一个打印机,B程序也需要一个打印机就可以公用这一个模块了.在window下库文件为.dll格式,linux下为/lib/*so格式的文件. 配置文件:通过设置配置文件来改变程序启动时的运行特征. 帮助手册:使用的帮助文档. ?

CentOS6.5安装MySQL5.1.73数据库

一.描述 本博客主要介绍CentOS6.5安装MySQL数据库 .启动和关闭MySQL服务.MySQL的登录和退出,以及My SQL数据库root用户的密码配置和修改. 二.主要步骤 1.查看本系统是否已经安装有MySQL数据库 先查看本操作系统是否已经安装有操作系统,显示只有一个mysql的类库,并没有安装该数据库. [[email protected] tongSoftware]$ rpm -qa | grep mysql mysql-libs-5.1.73-3.el6_5.x86_64 2

一次Linux下卸载安装mysql-5.1.73的折腾

安装准备: rpm -qa|grep -i mysql 命令敲完后出来一堆mysql,各式各样的已安装mysql包,什么-java .-Python等等不一而足,一看懵了! 发挥不败精神,先了解情况,通过了解发现这是一台全新服务器,这些都是安装菜鸡把系统自带包都打上了,考虑再三还是卸载吧,简单迅速! 卸载:rpm -ev 使用rpm -ev 卸载后,使用whereis mysql或者find / -name mysql查看还有哪些目录留存,使用rm -rf 删除目录,删就删个彻底!!!! ps:

Centos7.5安装mysql5.7.24二进制包方式部署

一.环境准备: 操作系统:CentOS Linux release 7.5.1804 (Core) mysql版本:mysql-5.7.24-linux-glibc2.12-x86_64.tar.gzIP:172.16.8.247 二.mysql5.7二进制安装 1.安装依赖包 yum -y install libaio 2.安装mysql软件 下载软件包:https://cdn.mysql.com//Downloads/MySQL-5.7/mysql-5.7.24-linux-glibc2.1