操作步骤一:创建MySQL实例
具体操作,请参见创建实例。
操作步骤二:创建ECS
具体操作,请参见创建弹性云主机。
操作步骤三:连接MySQL实例
本地使用Linux远程连接工具登录ECS。
其中,Remote host为ECS绑定的弹性公网IP。
输入创建ECS时设置的密码。
下载客户端,选择客户端版本和操作系统,下载mysql-community-client-8.0.26-1.el6.x86_64.rpm客户端安装包。
上传客户端安装包到ECS。
安装客户端。
rpm -ivh --nodeps mysql-community-client-8.0.26-1.el6.x86_64.rpm
连接MySQL实例。
mysql -h 192.168.XX.XX -P 3306 -u root -p
创建数据库test_db。
create database test_db;
创建表test_table。
create table test_table(id int(8), name char(32), age int(8));
向表中插入一条数据。
insert into test_table(id, name, age) values(1, 'zhujiasi', 30);
查询表数据。
select * from test_table;
更新表中id为1的age字段值。
update test_table set age=31 where id=1;
查询更新后的表数据。
select * from test_table where id=1;
删除表中id为1的数据。
delete from test_table where id=1;
删除表结构。
drop table test_table;
删除数据库。
drop database test_db;