zoukankan      html  css  js  c++  java
  • mysql数据库部署与连接

    第一章 数据库部署与连接

    1. Windows系统环境下操作:

    1.1. 安装部署

    方式一: https://dev.mysql.com/downloads/installer/

     

    方式二:下载安装PHPstudy程序,然后打开其MySQL服务。注意:phpstudy程序存储目录必须全英文!

    1.2. 连接

    备注:mysql服务端口为——3306

    方式一:命令行操作

    win+r——>cmd——>进入phpstudy数据程序的MySQLbin目录下——>mysql.exe -uroot -proot(mysql .exe用户名 密码(默认为root))

    C:Users子墨.咖啡>d:
    
    D:>cd D:phpstudyphpstudy_proExtensionsMySQL5.7.26in
    
    D:phpstudyphpstudy_proExtensionsMySQL5.7.26in>mysql -uroot -proot
    mysql: [Warning] Using a password on the command line interface can be insecure.
    Welcome to the MySQL monitor.  Commands end with ; or g.
    Your MySQL connection id is 2
    Server version: 5.7.26 MySQL Community Server (GPL)
    
    Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved.
    
    Oracle is a registered trademark of Oracle Corporation and/or its
    affiliates. Other names may be trademarks of their respective
    owners.
    
    Type 'help;' or 'h' for help. Type 'c' to clear the current input statement.
    
    mysql>

     

    方式二:图形界面操作

    安装程序Navicat

    链接本地数据库,密码默认root

     

    打开数据库

     

    2. Linux系统环境下:

    2.1. 安装,启动

    [root@test-201 ~]# yum -y install mariadb mariadb-server
    
    [root@test-201 ~]# systemctl start mariadb      systemctl enable mariadb

    2.2. 连接

    方式一:

    [root@test-201 ~]# mysql -uroot
    
    Welcome to the MariaDB monitor.  Commands end with ; or g.
    
    Your MariaDB connection id is 3
    
    Server version: 5.5.65-MariaDB MariaDB Server
    
     
    Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.
    
    
    Type 'help;' or 'h' for help. Type 'c' to clear the current input statement.
    
    
    MariaDB [(none)]>

    方式二:

     

     

  • 相关阅读:
    Tableau如何绘制堆叠柱状图
    Tableau如何绘制多边形地图
    Tableau如何绘制凹凸图
    数据库备份策略设计
    MySQL数据库如何实现增量备份
    Tableau如何绘制瀑布图
    创建.net core ef项目
    asp.net core的ef的连接字符串
    sqlserver的varchar nvarchar区别
    jq的ajax请求写法
  • 原文地址:https://www.cnblogs.com/dazhu-secure/p/13716076.html
Copyright © 2011-2022 走看看