登录
首页 >  数据库 >  MySQL

windows service安装mysql5.7

来源:SegmentFault

时间:2023-01-24 21:59:14 404浏览 收藏

IT行业相对于一般传统行业,发展更新速度更快,一旦停止了学习,很快就会被行业所淘汰。所以我们需要踏踏实实的不断学习,精进自己的技术,尤其是初学者。今天golang学习网给大家整理了《windows service安装mysql5.7》,聊聊MySQL、windows-server,我们一起来看看吧!

安装

mysql5.7安装时,由于官网上供下载的只有压缩包版本的,所以并不是傻瓜程序。相信官方文档上也给出了详尽的教程。在此,我们参考了CSDN上的一篇文章:https://blog.csdn.net/u013235...

步骤总结如下:

  1. http://dev.mysql.com/download... 下载压缩包,并解压
  2. 根目录中,新建my.ini文件,进行个性化的配置。
  3. 使用管理员来启用cmd.exe(在system32中找到它,并右键管理身份运行)
  4. 在命令行环境下进入解压的根目录下的
    [client] 
    # password       = your_password 
    port            = 3307
    
    
    # The MySQL server
    [mysqld]
    port= 3307
    
    
    [mysqldump]
    quick
    max_allowed_packet = 16M
    
    [mysql]
    no-auto-rehash
    # Remove the next comment character if you are not familiar with SQL
    #safe-updates
    
    [isamchk]
    key_buffer = 20M
    sort_buffer_size = 20M
    read_buffer = 2M
    write_buffer = 2M
    
    [myisamchk]
    key_buffer = 20M
    sort_buffer_size = 20M
    read_buffer = 2M
    write_buffer = 2M
    
    [mysqlhotcopy]
    interactive-timeout

    批处理

    如果你不想让

    @echo off
    cd /D %~dp0
    echo Diese Eingabeforderung nicht waehrend des Running beenden
    echo Please dont close Window while MySQL is running
    echo MySQL is trying to start
    echo Please wait  ...
    echo MySQL is starting with my.ini (console)
    
    bin\mysqld --defaults-file=my.ini --standalone --console
    
    if errorlevel 1 goto error
    goto finish
    
    :error
    echo.
    echo MySQL konnte nicht gestartet werden
    echo MySQL could not be started
    pause
    
    :finish

    然后将其

    快捷方式
    发送到其它位置,双击就启动了
    mysql
    ,关闭控制台,就停用了
    mysql

    本篇关于《windows service安装mysql5.7》的介绍就到此结束啦,但是学无止境,想要了解学习更多关于数据库的相关知识,请关注golang学习网公众号!

声明:本文转载于:SegmentFault 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>