我有一个类似的情况下,我需要在操作系统Amazon Linux中使用命令启动shell脚本..下面是我传递的命令
[premkumar@rails-app-5 ~]$ sudo rds-watch-db-logfile fdstaging --log-file-name slowquery/mysql-slowquery.log | ./watch.sh
以下是回复。
-bash: ./watch.sh: Permission denied
Watch.sh
#! /bin/bash
URL="https://collectors.sumologic.com/receiver/v1/http/<unique URL string>"
while read data;
do
curl --data "$data" $URL
done
--结束
引用链接为https://www.sumologic.com/2014/07/28/pushing-aws-rds-logs-to-sumo-logic/
有人能帮我吗?我需要用命令运行这个shell脚本。
1条答案
按热度按时间ttp71kqs1#
您可能尚未设置脚本的可执行位。请尝试
chmod a+x watch.sh
,然后重试。