摘要:
#!/bin/bash function title_print () { terminal_width=$(stty size|cut -d' ' -f2) title=$1 title_length=$(echo $title|wc -L) pre_length=$[($terminal_wid 阅读全文
摘要:
#!/bin/bash nfs_ip="xx.xx.xx.xx" nfs_dir="/data/nfs/" # 数据库存放在nfs共享目录下的文件夹名称 data_dir="mysql_data" # 数据库存放于nfs服务器的完整路径 nfs_mysql_data="${nfs_dir}/${da 阅读全文
摘要:
定义相关信息 # 定义挂载点 mount_point='/data' # 定义使用的磁盘 disk='/dev/sdb' # 定义卷组名称 vg_name='vg_data' # 定义逻辑卷名称 lv_name='lv_data' 创建LVM # 创建挂载点目录 mkdir -p ${mount_p 阅读全文
摘要:
磁盘IO #!/bin/sh CURRENT_DIR=$( cd $(dirname $0) pwd ) PIDFILE="$CURRENT_DIR/disk.pid" iostat -x -k -d 1 1>>io-disk.log & pidstat -d 1 1>>io-thread.log 阅读全文
摘要:
#!/bin/bash PASS='password' for ip in $(cat ip.txt); do expect -c " set timeout 5; spawn scp -rp ip.txt root@$ip:/tmp expect { \"(yes/no)\" {send \"ye 阅读全文
摘要:
#!/bin/bash function title_print() { terminal_width=$(stty size | cut -d' ' -f2) title=$1 title_length=$(echo $title | wc -L) pre_length=$((($terminal 阅读全文
摘要:
#!/bin/bash function confirm() { echo -e $1 read -r -p "确认继续吗? [Yes/No] " input case $input in [yY][eE][sS] | [yY]) $2 ;; [nN][oO] | [nN]) return 0 ;; 阅读全文
摘要:
centos8下安装pxc-80 官方地址 https://www.percona.com/doc/percona-repo-config/index.html https://www.percona.com/doc/percona-xtradb-cluster/LATEST/install/yum 阅读全文