• manjaro mysql安装197


    安装并初始化MySql

    sudo pacman -S mysql

    正在安装 mysql-clients (8.0.11-1)...
    正在安装 mysql (8.0.11-1)...
    :: You need to initialize the MySQL data directory prior to starting
       the service. This can be done with mysqld --initialize command, e.g.:
       mysqld --initialize --user=mysql --basedir=/usr --datadir=/var/lib/mysql
    :: Additionally you should secure your MySQL installation using
       mysql_secure_installation command after starting the mysqld service

    初始化MySql数据目录 控制台会输出root临时密码 注意记录

    mysqld --initialize --user=mysql --basedir=/usr --datadir=/var/lib/mysql
     

    查看MySql状态

    sudo systemctl status mysqld

    启动MySql服务/开机自启

    sudo systemctl enable mysqld
    
    sudo systemctl start mysqld
    

    连接工具

    1.mysql workbench
    2.manjaro 商店搜索 dbeaver

     dbeaver 安装根据步骤走一般不会出错 如果使用root链接可能提示  Public Key Retrieval is not allowed  

    解决: 将allowPulicKeyRetrieval 设置为true  或者切换非root用户

      

     

    安装并初始化MySql

    sudo pacman -S mysql
    
    正在安装 mysql-clients (8.0.11-1)...
    正在安装 mysql (8.0.11-1)...
    :: You need to initialize the MySQL data directory prior to starting
       the service. This can be done with mysqld --initialize command, e.g.:
       mysqld --initialize --user=mysql --basedir=/usr --datadir=/var/lib/mysql
    :: Additionally you should secure your MySQL installation using
       mysql_secure_installation command after starting the mysqld service
    

    初始化MySql数据目录/注意记录root临时密码

    mysqld --initialize --user=mysql --basedir=/usr --datadir=/var/lib/mysql
    

    查看MySql状态

    sudo systemctl status mysqld
    

    启动MySql服务/开机自启

    sudo systemctl enable mysqld
    sudo systemctl start mysqld


    作者:绍重先
    链接:https://www.jianshu.com/p/12c871f937f7
    来源:简书
    著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。
  • 相关阅读:
    thinkphp 框架的学习(1) 扩展配置文件
    【7】了解Bootstrap栅格系统基础案例(2)
    【6】了解Bootstrap栅格系统基础案例(1)
    【5】了解Bootstrap预置的栅格系统
    【4】创建一个自己的Bootstrap模板
    【3】Bootstrap的下载和目录结构
    【2】认识Bootstrap
    【1】Bootstrap入门引言
    css(html)背景图优化合并
    CSS2书写顺序
  • 原文地址:https://www.cnblogs.com/Ai-Hen-Jiao-zhi/p/12158316.html
Copyright © 2020-2023  润新知