Author:skatexg
Time:2021/07/27
数据库实例连通检测
1.使用场景:
存在问题:研发同学经常用很长时间排查数据库连通性问题,或向dba寻求帮助时,需要反复沟通确认问题,才能解决,影响工作效率
目的:希望研发同学使用此工具可以检查从应用服务是否可以连接到数据库实例,提高研发同学排障的效率
2.下载与安装
# wget https://download.youkuaiyun.com/download/wyzxg/20562565
# yum install db-connect-check-1.0.1-gld.dba.x86_64.rpm
3.命令用法:
# db_connect_check.sh -H
Usage:
sh db_conn_check.sh -h host [-u user] -P port -p password -t type
Description:
host: the address of database instance.
user: the username of database instance.
port: the port of database instance.
password: the password of database instance.
type: the type of database,eg:redis or mysql.
4.样例
检查mysql实例的连通性
# db_connect_check.sh -h 10.125.68.210 -u user -P 3306 -p pwd -t mysql
############### MySQL begin check 10.125.68.210:3306 ########
network check: success
port check: fail[Contact DBA]
db login check: fail[user or password is wrong]
############### End check ################################
检查mysql实例的连通性
# db_connect_check.sh -h 10.125.68.89 -P 6379 -p 3se66S1 -t redis
############### Redis begin check 10.125.68.89:6379 ########
network check: success
port check: success
db login check: fail[user or password is wrong]
############### End check#################################
-------end-------