赞
踩
快,关注这个公众号
一起涨姿势
经过前面的介绍,相信已经迫切希望在 MySQL 上进行一番尝试操作了。安装并配置 MySQL 开发环境成为一切工作的前提。mysqladmin --version
若返回得到版本号,则表示已经完成安装,本文在 Debian(Raspbian) 系统下完成,输出如下:
mysqladmin Ver 8.42 Distrib 5.5.44, for debian-linux-gnu on armv71
mysqladmin -u root password "new_password"
mysql -u root -pEnter password:*******
输入密码时并不会现实,这是Linux系统的特点。如果一切工作正常,则现实欢迎界面,如下:
Welcome to the MySQL monitor. Commands end with ; or \g.Server version: 5.5.44-0+deb8u1 (Raspbian)Copyright (c) 2000, 2015, 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>
欢迎界面已经说明了一些语法规则:
mysql> show databases;+----------+| Database |+----------+| mysql || pi |+----------+2 rows in set (0.00 sec)
至此,MySQL 服务器已经完成安装和配置,并能够正常使用了。
/etc/init.d/mysqld start
同样,你需要将 mysqld 二进制文件添加到 /etc/init.d/ 目录中。这里笔者并没有进行系统启动配置,该设置尚待验证。
ღ The End ღ
我们一起去松勤学测试
在右下角戳一个小花花
你是最好看的
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。