这篇文章继续以kod可道云网盘为例,带大家熟悉阿里云产品,本篇文章介绍Redis,MySQL,NAS,OSS,话不多说,直接开始。
Redis
一、购买Reids主从版
二、配置kod免秘钥连接Redis内网接口
利用我们负载均衡转发的5555端口连接web01
1. [root@web01 ~]# yum -y install redis 2. [root@web01 ~]# redis-cli -h r-xxxx.redis.rds.aliyuncs.com 成功连接 3. r-xxxx.redis.rds.aliyuncs.com:6379> keys * 4. (empty list or set)
刷新该网页,因为负载均衡有俩web,所以这个操作需要执行两次,keys *查询,成功!
三、申请公网访问连接
四、创建用户名密码
在虚拟机上远程连接公网Redis接口地址,使用keys *验证+
这里无法使用web连接公网IP了,因为我们的web无法连接网络,只能私网连接redis,所以我们在虚拟机上连接web
1. [root@Web01 ~]# redis-cli -h r-xxxx.redis.rds.aliyuncs.com 2. r-xxxx.redis.rds.aliyuncs.com:6379> keys * 3. (error) ERR illegal address: 123.112.17.24:9913 4. 5. #将本机IP加入白名单 6. 7. r-xxxx.redis.rds.aliyuncs.com:6379> keys * 8. (error) NOAUTH Authentication required. 9. 10. #使用密码连接 11. 12. [root@Web01 ~]# redis-cli -h r-xxx.redis.rds.aliyuncs.com -a 'username:password' #后面跟账号和密码 13. r-0jla7au49dwd2jnp2rpd.redis.rds.aliyuncs.com:6379> keys * 14. 15. #成功显示
MySQL
一、购买msyql主从版
这里买错了,需要直接买高可用版本
二、配置用户名密码
三、通过ECS主机测试和mysql的连通性
mysql主机列表,网络详情,复制专有网络,也就是我们局域网的域名
1. [root@web01 ~]# ping rm-xxxx.mysql.rds.aliyuncs.com 2. 3. [root@web01 ~]# yum -y install mariadb-server.x86_64 4. 5. [root@web01 ~]# mysql -h rm-xxxx.mysql.rds.aliyuncs.com -u'username' -p'password' 6. Welcome to the MariaDB monitor. Commands end with ; or \g. 7. Your MySQL connection id is 59 8. Server version: 5.7.40-log Source distribution 9. 10. Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others. 11. 12. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. 13. 14. MySQL [(none)]> show databases; 15. +--------------------+ 16. | Database | 17. +--------------------+ 18. | information_schema | 19. | __recycle_bin__ | 20. | mysql | 21. | performance_schema | 22. | sys | 23. +--------------------+ 24. 5 rows in set (0.00 sec) 25. 26. MySQL [(none)]>