免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2891 | 回复: 7
打印 上一主题 下一主题

shell 脚本 mysql 终端下取值有空 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2011-08-25 11:50 |只看该作者 |倒序浏览
写了个脚本让mysql 从库不是实时同步的脚本,在终端下运行脚本一点问题都没有.但是加入到crontab中运行.取值取不到.
  1. master_host="192.168.1.13"
  2. master_user="slave"
  3. master_passwd="slave"
  4. set -x
  5. Master_Log_File=`/usr/bin/mysql  -u$master_user -h$master_host -p$master_passwd -e "show master status\G" |grep '^\s*File'|cut -d: -f2|tr -
  6. d ' '`
  7. set +x
  8. Master_Log_Pos=`/usr/bin/mysql  -u$master_user -h$master_host -p$master_passwd -e "show master status\G" |grep '^\s*Position'|cut -d: -f2|tr
  9. -d ' '`
复制代码
运行如下:
+++ /usr/bin/mysql -uslave -h192.168.100.13 -psee_slave -e 'show master status\G'
+++ grep '^\s*File'
+++ cut -d: -f2
+++ tr -d ' '
++ Master_Log_File=mysql-bin.000077
++ set +x
可是在把脚本写在crontab运行得到的值为空:
+ set -x
++ /usr/bin/mysql -uslave -h192.168.100.13 -psee_slave -e 'show master status\G'
++ cut -d: -f2
++ tr -d ' '
++ grep '^\s*File'
+ Master_Log_File=
+ set +x
唯一的区别就是终端下运行和非终端运行.不知道是环境变量影响还是其他的,有人能指点下

论坛徽章:
2
射手座
日期:2014-10-10 15:59:4715-16赛季CBA联赛之上海
日期:2016-03-03 10:27:14
2 [报告]
发表于 2011-08-25 14:34 |只看该作者
回复 1# kingdomkiss


    try:
  1. /usr/bin/mysql  -u$master_user -h$master_host -p$master_passwd -e "show master status\G" |grep '^\s*File'|cut -d: -f2|tr -d ' '|read Master_Log_File
复制代码

论坛徽章:
8
摩羯座
日期:2014-11-26 18:59:452015亚冠之浦和红钻
日期:2015-06-23 19:10:532015亚冠之西悉尼流浪者
日期:2015-08-21 08:40:5815-16赛季CBA联赛之山东
日期:2016-01-31 18:25:0515-16赛季CBA联赛之四川
日期:2016-02-16 16:08:30程序设计版块每日发帖之星
日期:2016-06-29 06:20:002017金鸡报晓
日期:2017-01-10 15:19:5615-16赛季CBA联赛之佛山
日期:2017-02-27 20:41:19
3 [报告]
发表于 2011-08-25 14:35 |只看该作者
master_passwd="slave"
+++ /usr/bin/mysql -uslave -h192.168.100.13 -psee_slave -e 'show master status\G'

现在的系统已经智能成这样儿了?

论坛徽章:
0
4 [报告]
发表于 2011-08-25 15:14 |只看该作者
,脚本有过改动.

论坛徽章:
0
5 [报告]
发表于 2011-08-25 15:30 |只看该作者
回复 2# yinyuemi


    这个不行哎.

[root@sg-0006 ~]# /usr/bin/mysql -u$master_user -h$master_host -p$master_passwd -e "show master status\G" |grep '^\s*File'|cut -d: -f2|tr -d ' '
mysql-bin.000077
[root@sg-0006 ~]# /usr/bin/mysql -u$master_user -h$master_host -p$master_passwd -e "show master status\G" |grep '^\s*File'|cut -d: -f2|tr -d ' ' |read k
[root@sg-0006 ~]# echo $k

为空.终端下运行就这样了.

论坛徽章:
0
6 [报告]
发表于 2011-08-25 18:18 |只看该作者
回复  kingdomkiss


    try:
yinyuemi 发表于 2011-08-25 14:34



    使用ksh的话又回到了原点.自动执行是无法取到值.

论坛徽章:
0
7 [报告]
发表于 2011-08-26 09:04 |只看该作者
试了下没问题
[root@SN597-ToocleZJ-DB11 scripts]# cat /tmp/mylook
mysql-bin.000104
[root@SN597-ToocleZJ-DB11 scripts]# cat aa.sh
#!/bin/bash

/usr/bin/mysql -ss -e "show master status"|awk '{print $1}' >> /tmp/mylook

[root@SN597-ToocleZJ-DB11 scripts]# cat /tmp/mylook
mysql-bin.000104
mysql-bin.000104

论坛徽章:
0
8 [报告]
发表于 2011-08-26 14:02 |只看该作者
试了下没问题
justlooks 发表于 2011-08-26 09:04


谢谢,确实管用.
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP