• mysql 5.5 安装


    1. 解压压缩包

    2. 设置 mysql_home 环境变量

    2. 与 5.7 不同 5.5 以前 使用 mysql/scripts 下的 ./mysql_install_db 脚本 初始化。!

    3.启动mysql服务和添加开机启动mysql服务:

     

    添加开机启动:执行命令cp support-files/mysql.server /etc/init.d/mysql,把启动脚本放到开机初始化目录

     

    启动mysql服务:执行命令service mysql start

     

    博客地址:

    https://www.cnblogs.com/lhrbest/p/7445468.html

    Usage: /usr/local/mysql/bin/mysql_install_db [OPTIONS]
      --basedir=path       The path to the MySQL installation directory.
      --cross-bootstrap    For internal use.  Used when building the MySQL system
                           tables on a different host than the target.
      --datadir=path       The path to the MySQL data directory.
      --force              Causes mysql_install_db to run even if DNS does not
                           work.  In that case, grant table entries that normally
                           use hostnames will use IP addresses.
      --ldata=path         The path to the MySQL data directory.
      --rpm                For internal use.  This option is used by RPM files
                           during the MySQL installation process.
      --skip-name-resolve  Use IP addresses rather than hostnames when creating
                           grant table entries.  This option can be useful if
                           your DNS does not work.
      --srcdir=path        For internal use.  The directory under which
                           mysql_install_db looks for support files such as the
                           error message file and the file for popoulating the
                           help tables.
      --user=user_name     The login username to use for running mysqld.  Files
                           and directories created by mysqld will be owned by this
                           user.  You must be root to use this option.  By default
                           mysqld runs using your current login name and files and
                           directories that it creates will be owned by you.

  • 相关阅读:
    Silverlight学习(五)图形标绘
    Silverlight学习(四) domainservice动态多条件查询
    MySQL之单表查询
    mysql外键的三种关系
    mysql之完整性约束
    接口类和抽象类的区别
    mysql中的sql_mode
    html5本地存储技术 localstorage
    mysql数值类型
    mysql
  • 原文地址:https://www.cnblogs.com/whm-blog/p/10895952.html
Copyright © 2020-2023  润新知