`
bluepeer
  • 浏览: 74506 次
  • 性别: Icon_minigender_1
  • 来自: 广州
社区版块
存档分类
最新评论

RHE5 -- 安装Mysql5

阅读更多
下载下来:
-rw-r--r-- 1 root root  7635229 Jul 30 07:38 MySQL-client-community-5.1.49-1.rhel5.i386.rpm
-rw-r--r-- 1 root root 21277185 Jul 30 07:38 MySQL-server-community-5.1.49-1.rhel5.i386.rpm

动工了:
[root@localhost software]# rpm -ivh MySQL-server-community-5.1.49-1.rhel5.i386.rpm

[root@localhost software]# rpm -ivh MySQL-client-community-5.1.49-1.rhel5.i386.rpm

启动:
[root@localhost software]# /etc/init.d/mysql start
Starting MySQL                                             [  OK  ]

重启:
[root@localhost software]# /etc/init.d/mysql restart
Shutting down MySQL....                                    [  OK  ]
Starting MySQL.                                            [  OK  ]

关掉:
[root@localhost software]# /usr/bin/mysqladmin -u root -p shutdown
Enter password:

登录授权:
[root@localhost software]# mysql -u root -p
Enter password:
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 1
Server version: 5.1.49-community MySQL Community Server (GPL)

Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved.
This software comes with ABSOLUTELY NO WARRANTY. This is free software,
and you are welcome to modify and redistribute it under the GPL v2 license

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

mysql> GRANT ALL PRIVILEGES ON *.* TO 'lake'@'%'IDENTIFIED BY 'lake' WITH GRANT OPTION;
Query OK, 0 rows affected (0.00 sec)
mysql> exit
Bye
[root@localhost software]# mysql -ulake -p
Enter password:
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 3
Server version: 5.1.49-community MySQL Community Server (GPL)

Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved.
This software comes with ABSOLUTELY NO WARRANTY. This is free software,
and you are welcome to modify and redistribute it under the GPL v2 license

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

mysql>

远程登录(再执行一次授权):
mysql> GRANT ALL PRIVILEGES ON *.* TO 'lake'@'%'IDENTIFIED BY 'lake' WITH GRANT OPTION;
Query OK, 0 rows affected (0.00 sec)

mysql> Ctrl-C -- exit!
[root@localhost software]# mysql -u lake -h 192.168.116.129 -p
Enter password:
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 7
Server version: 5.1.49-community MySQL Community Server (GPL)

Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved.
This software comes with ABSOLUTELY NO WARRANTY. This is free software,
and you are welcome to modify and redistribute it under the GPL v2 license

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

mysql>

开放端口:
[root@localhost software]# vim /etc/sysconfig/iptable
有没有看到:
-A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 22 -j ACCEPT
这就是开放22端口
意思意思:
-A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 3306 -j ACCEPT

修改密码:
mysql> update user set password = PASSWORD("12345") where user='root';
Query OK, 0 rows affected (0.00 sec)
Rows matched: 3  Changed: 0  Warnings: 0

mysql> commit;
Query OK, 0 rows affected (0.00 sec)
[root@localhost software]# /etc/init.d/mysql restart
Shutting down MySQL..                                      [  OK  ]
Starting MySQL.                                            [  OK  ]

好像还有些什么,忘记,以后再补
分享到:
评论

相关推荐

    解决vm8.0安装rhe5.5后乱码问题

    在虚拟机VMware 8.0中安装RHEL (Red Hat Enterprise Linux) 5.5后,用户可能会遇到一个常见的问题:系统显示中文时出现乱码。这个问题主要涉及到字符编码设置不正确,使得中文字符无法正常显示。为了解决这个问题,...

    rhe-sew.zip_itselfiqs_majoram7_文件操作

    在这个场景中,我们关注的文件是名为"rhe-sew.zip_itselfiqs_majoram7_文件操作"的压缩包,它包含了与皮肤更换SDK相关的源代码文件。这个SDK称为USkin,它的目标是为用户提供免费的个性化换肤功能。 USkin SDK是...

    nmon监控linux or aix工具

    1、包含了安装程序+分析的excel 2、使用,这里以redhat为例 输入./nmon_x86_rhe15 3、自动收集 ./nmon_x86_rhe15 -fT -s 10 -c 120 -f代表输出文件,-T最消耗资源的进程,-s收集数据的时间间隔,-c收集次数 4...

    脱机下RedHat7.6安装Oracle11g详细攻略.pdf

    5. 配置用户资源限制: - 修改`/etc/security/limits.conf`文件,对oracle用户设置文件句柄数、进程数等限制。 6. 配置安装目录: - 创建Oracle安装目录和oracle Inventory目录。 - 更改目录的所有者为oracle...

    RHE5服务器配置-搭建Samba服务器步骤(图)

    认识Samba Samba的核心是两个守护进程,即smbd和nmbd。服务器启动到停止期间持续运行,smba监听139TCP端口;...一、安装配置Samba的RPM包(包名)samba-common:包括Samba服务器和客户端均需要的文件samba:服务器

    Redhat7.3_64位_rhel-server-7.3-x86_64-dvd.iso

    Redhat7.3_64位操作系统镜像,附件为百度云盘下载链接,有需要的朋友可以下载,希望可以帮到大家!

    RHE5服务器管理 搭建DNS服务器步骤说明[图文]

    ### RHE5中搭建DNS服务器的关键步骤与概念详解 #### 一、DNS主要配置文件及其作用 1. **`/etc/hosts`**: 这是一个简单的文本文件,用于存放主机名到IP地址的映射关系。它对于那些静态IP地址的系统来说非常有用,...

    MySQL数据库备份与恢复

    - 数据库服务器:Linux AS3,MySQL版本4.1.14-rhe3。 - FTP服务器:Linux AS3,使用vsftpd-2.0.4(Linux自带)。 2. **设置MySQL超级用户root的口令** - 由于MySQL默认情况下root用户的密码为空,这为数据库系统...

    ibm_dd_sraidmr_00.00.04.38-01_rhel5_32-64.tgz

    标题 "ibm_dd_sraidmr_00.00.04.38-01_rhel5_32-64.tgz" 暗示这是一个针对IBM服务器的存储阵列驱动程序更新,适用于Red Hat Enterprise Linux 5操作系统,支持32位和64位架构。描述和标签与标题相同,进一步确认这是...

    Linux RHEL_5安装详细图解

    **Linux RHEL 5安装详细图解** 在IT行业中,Linux Red Hat Enterprise Linux(RHEL)5是一款广泛使用的操作系统,尤其在企业环境中。本指南将详细介绍RHEL 5的安装步骤,帮助新手顺利进行系统部署。 一、安装前...

    rhel-server-6.9-x86_64-dvd-iso.txt

    redhat6.9 iso文件 txt文件中是百度网盘的链接和提取码

    派特莱RHE 系列小型LED旋转报警灯2D CAD.dxf

    派特莱RHE 系列小型LED旋转报警灯2D CADdxf,特点:小型LED旋转灯,使用单片LED与特殊构造反射系统,实现大范围的反射效果。RHEB/RKEB系列可内藏蜂鸣器(1米处90分贝),旋转的同时可发出报警声。采用优质小型马达,...

    rhe8的外网ping通设置.txt

    rhe8的外网ping通设置.txt

    CINRAD_SA雷达LINUX操作系统安装解析.pdf

    需要准备RHE L5.6 Kickstart启动盘、RHEL 5.6系统盘、rdasc安装盘(或rdasc.iso镜像文件)、rdasc升级文件(以上软件由厂家提供),还需要准备好以前备份的配置文件夹(厂家技术员升级RDA后台站自行备份)。...

    RHE5服务器管理之搭建FTP服务器步骤分享[图]

    【FTP工作原理】 ...总之,RHE5下的FTP服务器搭建涉及理解FTP的工作机制、选择合适的FTP软件以及根据需求配置服务器参数。通过上述步骤,我们可以创建一个安全、可控的FTP服务,满足文件共享和传输的需求。

    Part 2 Introduction and refrences.pdf

    Perhaps I could ask those who read this editorial a rhe- torical question. When did you last fully read the Introduc- tion to a scientific paper in which you were interested? I suspect the answer ...

    react-table:简单React可排序可搜索表

    React排序搜索表 丰满的 可搜寻的 可排序 寻呼机包括 使用自定义组件渲染特定的TD React> = 16.8.2 react-dom> = 16.8.2 现场演示 现场演示: : 例子 需要更多示例吗?... _id : "d-rhe-428-j

    树莓派用GPS校准系统时钟

    文件解压后,将RHE-GPSD.pyc文件放到/home/pi/Documents子目录里,将GPST.desktop文件放到树莓派桌面上,双击GPST图标即可运行,当程序窗体的时间显示变为蓝色时,时间同步,时间显示变为绿色时,时间和定位全部完成...

Global site tag (gtag.js) - Google Analytics