阿里云服务器mysql(阿里云服务器购买)
本文目录一览:
- 1、关于如何连接阿里云服务器上的MySQL数据库的解答
- 2、阿里云服务器ECSMySQL数据库忘记密码怎么办
- 3、阿里云服务器如何安装MySQL数据库
- 4、你好,我想问一下,如果在阿里云服务器ecs中安装mysql,这个数据库属于云数据库吗?
关于如何连接阿里云服务器上的MySQL数据库的解答
用 SSH客户端登录上以后
首先启动数据库:
[root@iZm5ec880z2rorZ ~]# service mysqld start
可以输入一下加粗命令:
[root@iZm5ec880z2rorZ ~]# mysql -u root -p
Enter password: (输入你运谨碰的数据库密码)
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 5
Server version: 5.1.73-log MySQL Community Server (GPL)
Copyright (c) 2000, 2013, 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 use mysql
Database changedmysql GRANT ALL PRIVILEGES ON *.* TO root@'%' IDENTIFIED BY 'ldyu123' WITH GRANT OPTION;
Query OK, 0 rows affected (0.00 sec)
mysql commit;
Query OK, 0 rows affected (0.00 sec)
mysql flush privileges;
Query OK, 0 rows affected (0.00 sec)
mysql exit;
退出后晌悔,输入下边的命令:
[root@iZm5ec880z2rorZ ~]# service mysqld restart
Shutting down MySQL... [ OK ]
Starting MySQL. 旁谈 [ OK ]
阿里云服务器ECSMySQL数据库忘记密码怎么办
先以root身份SSH连进ECS主机
一、首先尝试了查找安装数据库时的默认密码,一般在account.log 账户文件里
位置大概是在 /root/类似sh-1.3.0-ubuntu/account.log
直接 cat 扮袭知account.log 打印一下里禅销面的内容,一些默认的账户信息就在里面,如果没有改过的话。。。
可惜,好像改过了
二、尝试修改mysql的配置文件厅消,使之可以跳过密码直接用root进入数据库再该密码就好了
步骤:
首先找到mysql的配置文件my.cnf 一般在 /etc/my.cnf
cd进 /etc 直接 vim my.cnf 编辑他
在【mysqld】标签下添加一句skip-grant-tables 即可
esc退出编辑 :wq保存退出
然后重启服务器 service mysqld restart 让修改生效
mysql -u root 就可以直接进入数据库了
然后是修改密码 mysql USE mysql;
mysql UPDATE user SET Password = password (‘新密码’) WHERE User = ‘root’ ;
mysql flush privileges ;
mysql quit
改完密码,再将配置文件改回来,就把添加的那句删掉就好了,然后再次重启服务器
然后就可以使用 mysql -u root -p 输入你的新密码进入啦
阿里云服务器如何安装MySQL数据库
1.查看mysql编辑情况rpm -qa|grep mysql
2.卸载原有的mysql rpm -e --nodeps mysql
//
强力删除模式,如果使用上面命谈吵猜令删除时,提示有依赖的其它文件,则用该命令可以对其进行强力删除
3.通过命令查看yum上面提供的可下载版本 yum list | grep mysql
4.安装mysql客户端和服务端 yum install -y mysql-server mysql mysql-deve
5.查看mysql启动状态 mysql service status
6.登录含型mysql提示
7.修改mysql的root密码
service mysqld stop
无密码登录mysql:mysqld_safe --skip-grant-tables
输入mysql -uroot -p 直接碰粗回车进入mysql客户端页面
use mysql;
update user set password=PASSWORD("root")where user="root";修改密码
flush privileges; 更新权限
service mysqld restart
最后直接登录 mysql -u root -p回车输入密码
你好,我想问一下,如果在阿里云服务器ecs中安装mysql,这个数据库属于云数据库吗?
不属于云数据伏岩库 缺巧御属于宽宽普通的mysql库 保存在服务器ecs中,而云数据库 是保存在云端中的才叫云数据库!
发表评论
暂时没有评论,来抢沙发吧~