美文网首页
windows定时上传ogg监控文件到ftp服务器

windows定时上传ogg监控文件到ftp服务器

作者: ksice | 来源:发表于2019-08-29 17:52 被阅读0次

    为了解决监控ogg运行状态,更好的进行维护,所以采用脚本的形式读取ogg运行状态写入文本通过tfp命令上传到指定服务器(ftp服务器)进行文本解析,然后再shell脚本写入指定数据库。

    1、读取ogg进程状态写入文本脚本

    cd C:\Users\Administrator\Desktop\ogg(ogg安装目录)

    (echo info all echo exit)|ggsci|findstr  "EXTRACT REPLICAT MANAGER" >> C:\Users\Administrator\Desktop\testogg.txt

    :: 设置ftp地址

    SET ip_address=xxx.xxx.xx.xx

    :: 设置ftp用户名

    SET ftpusername=xx

    :: 设置ftp密码

    SET ftppassword=xx

    :: FTP文件路径(linux)

    SET FTPFilePath=xx

    :: 本地文件路径(windows)

    SET localFilePath=xxxx

    @Echo Off

    Echo open %ip_address% >ftp.up

    Echo %ftpusername%>>ftp.up

    Echo %ftppassword%>>ftp.up

    Echo Cd %FTPFilePath%>>ftp.up

    Echo binary>>ftp.up

    Echo put "%localFilePath%">>ftp.up

    Echo bye>>ftp.up

    FTP -s:ftp.up

    del ftp.up /q

    del 

    可能通过ftp上传文件,会遇到553 Could not create file.这时候在目标端设置ftp服务器的ftp的ftpd_full_access配置为on,命令如下setsebool allow_ftpd_full_access on,同时搭建ftp服务器需要取消匿名模式,将vsftpd.conf中anonymous_enable设置为NO,还需要设置local_root代表你ftp的文件存放路径,只能把文件上传到此路径下,同时设置777权限,否则可能导致553 Could not create file.还需要配置nopriv_user,这个是用于你ftp上传所用的用户名,可以新建个ftp用户,建议不使用root用户

    2、设置定时任务

    window的控制面板-->管理工具-->任务计划程序

    然后傻瓜式操作设置定时任务没什么特别的地方,进行设置触发器设置时间维度。

    相关文章

      网友评论

          本文标题:windows定时上传ogg监控文件到ftp服务器

          本文链接:https://www.haomeiwen.com/subject/ctziectx.html