zoukankan      html  css  js  c++  java
  • mysql官网的下载

    1. mysql开始被sun公司收购,sun公司被oracle公司收购,所以又被oracle公司收购。Mysql主要功能和oracle差不多,但是更便宜,性能规模也比oracle小不少。

    2. 进入mysql的官网,点击下载列(英文看的心累,心累)
    3. 找到图片所述版本,点击

    4. 点击

    5. GA版本下面有select oprating System选择哪种操作系统版本的,如果在windows下运行就选择windows,如果在linux下运行,就选择linux。select os version是选择操作系统的版本,我们的计算机是哪种的就选择哪种的。

    6. 再往下看就是mysql下载的选择了。选显示的第一个版本,点击下载
    7. 我选的是linux操作系统版本的,因为我要在阿里云服务器linux上安装mysql
    8. FileZiila上传 mysql文件(将mysql的文件放入一个空目录中,fileziila才能识别)。选择文件,右击上传。然后远程控制linux,安装mysql。

      安装过程可以在mysql的的官方网站获得,我们不需要遇到什么问题就百度,因为那些可能只是对应他们自己的问题,我们需要查找官方软件配套的文档。

      https://dev.mysql.com/doc/mysql-apt-repo-quick-guide/en/

    9. 安装(解压方法在mysql官网上寻找文档,不管是什么版本,我们需要找到我们对应的下载包的文档)                                                                                                               (1)在linux系统中输入  sudo dpkg -i /PATH/version-specific-package-name.deb   (path路径需要自己改,version-specific-package-name.deb 就是下载的压缩包名需要自己改)                                                                                                                                                                                                                                                        (2)这个过程中会出现选项     

      During the installation of the package, you will be asked to choose the versions of the MySQL server and other components (for example, the MySQL Workbench) that you want to install. If you are not sure which version to choose, do not change the default options selected for you. You can also choose none if you do not want a particular component to be installed. After making the choices for all components, choose Ok to finish the configuration and installation of the release package.

      You can always change your choices for the versions later; see Selecting a Major Release Version for instructions.(自己翻译吧,然后按照这个选择选项)                       (3)在linux系统中输入   shell> sudo apt-get update                                                                                                                                                                                       (4)在linux系统中输入   sudo apt-get install mysql-server    (出现这个界面是让你输入数据库密码的)               (5)启动服务器  sudo service mysql status  (测试)                                                                                                                                                                                    (6)停止服务器  sudo service mysql stop(测试)                                                                                                                                                                                          (7)启动服务器  sudo service mysql status(测试)

    10. 具体情况还是要自己去看文档介绍

  • 相关阅读:
    关于v$librarycache的几个字段含义
    nmon监控
    ORA-01841: (full) year must be between -4713 and +9999,
    MySql 5.7 新特性概览
    权限传递
    ORA-03135 防火墙超时设置断开db link 连接
    Oracle Profile使用详解(转)
    查看Oracle数据库SQL执行历史
    ALTER SEQUENCE 导致 REPLICAT 延时
    trace/trace2命令
  • 原文地址:https://www.cnblogs.com/S-Mustard/p/7500551.html
Copyright © 2011-2022 走看看