在线修改ha.proxy配置文件

#!/usr/bin/env python
# -*- coding:utf8 -*-
import os
import json

def fetch(backend):
        fetch_list = []
        with open(‘ha‘) as obj:
                flag = False
                for line in obj:
                        # line 每一行,
                        if line.strip() == "backend %s" % backend:
                                flag = True
                                continue
                        # 判断,如果当前是 backend开头,不再放
                        if flag and line.strip().startswith(‘backend‘):
                                break
                        if flag and line.strip():
                                fetch_list.append(line.strip())
        return fetch_list

#result = fetch("buy.oldboy.org")
#print result
def adds(dict_info):
    #s = ‘{"backend": "www.oldboy.org","record":{"server": "100.1.7.9","weight": 20,"maxconn": 30}}‘
        backend_title = dict_info.get(‘backend‘)
        current_title = "backend %s" % backend_title
        current_record = "server %s %s weight %s maxconn %s" % (dict_info[‘record‘][‘server‘],dict_info[‘record‘][‘server‘],dict_info[‘record‘][‘weight‘],dict_info[‘record‘][‘maxconn‘])
        # 获取制定backend下的所有记录
        fetch_list = fetch(backend_title)
        #print fetch_list
        # backend是否存在
        if fetch_list:
            #pass # 存在backend,则只需再添加记录
            # 1,要插入的记录,存在
            # 2,要插入的记录,不存在
            if current_record in fetch_list:
                    pass
            else:
                    fetch_list.append(current_record)#如果不存在直接将current_record追加到fetch_list中
            # 此时fetch_list为处理完的新列表
            with open(‘ha‘) as read_obj, open(‘ha.new‘, ‘w‘) as write_obj:
                    flag = False
                    has_write = False
                    for line in read_obj:#读取原配置文件
                        if line.strip() == current_title:#如果读取的行内容与current_title相等,则把current_title写入到文件中,然后就跳出本次循环,
                                write_obj.write(line)
                                flag = True
                                continue
                        if flag and line.strip().startswith(‘backend‘):#如果flag为真并且读取的line.strip内容是以"backend开头",则将flag置False
                                flag = False
                        if flag:
                        #如果flag为True新的列表fetch_list所有数据一行一行的写入到新配置文件,即当遍历原配置文件中current_title标签下的current_record记录,如果curent_record有三条,则循环三次,每循环一次就将fetch_list完整遍历一次的然后一条一条地写入到新配置文件,所以这里要用一个标识符has_write作为判断是否写入,如果已经写入了就不再继续往新配置文件中写入
                                if not has_write:
                                   for new_line  in fetch_list:
                                        temp = "%s %s \n" %(" "*8, new_line)
                                        write_obj.write(temp)
                                   has_write = True
                        else:
                            # 不满足以上的各种情况则直接将内容写入新配置文件
                                write_obj.write(line)
        else:
                #pass,如果不存在backend,则添加backend和current_record
                # current_title,current_record
                # 直接打开文件
                with open(‘ha‘) as read_obj, open(‘ha.new‘, ‘w‘) as write_obj:
                        for line in read_obj:
                                write_obj.write(line)
                        write_obj.write(‘\n‘+current_title+‘\n‘)#将要插入的current_title和两条current_record记录再写到新配置文件末尾
                        temp = "%s %s \n" %(" "*8, current_record)#把current_record两条记录写到新配置文件中
                        write_obj.write(temp)

#s = ‘{"backend": "test.oldboy.org","record":{"server": "10.10.10.9","weight": 20,"maxconn": 3000}}‘
#data_dict = json.loads(s)
#adds(data_dict)

def remove(dict_info):
    backend_title = dict_info.get(‘backend‘)
    current_title = "backend %s" % backend_title
    current_record = "server %s %s weight %s maxconn %s" % (dict_info[‘record‘][‘server‘],dict_info[‘record‘][‘server‘],dict_info[‘record‘][‘weight‘],dict_info[‘record‘][‘maxconn‘])
    # 获取制定backend下的所有记录
    fetch_list = fetch(backend_title)
    if fetch_list:
       pass
    else:
         if current_record not in fetch_list:
            pass
         else:
            fetch_list[fetch_list.index(current_record)]
            if len(fetch_list) > 0:
                fetch_list.insert(0, backend_title)
         with open(‘ha‘) as read_file, open(‘ha.new‘, ‘w‘) as write_file:
            flag = False
            has_write = False
            for line in read_file:
                line_strip = line.strip()
                if line_strip == backend_title:
                    flag = True
                    continue
                if flag and line_strip.startswith(‘backend‘):
                    flag = False
                if not flag:
                    write_file.write(line)
                else:
                    if not has_write:
                        for i in fetch_list:
                            if i.startswith(‘backend‘):
                                write_file.write(i+‘\n‘)
                            else:
                                write_file.write("%s%s\n" % (8*" ", i))
                    has_write = True
       
       
os.rename("ha", ‘ha.bak‘)
os.rename("ha.new", ‘ha‘)
       

if  __name__ == ‘__main__‘:
    
    print ‘1、获取;2、添加;3、删除‘
    num = raw_input(‘请输入序号:‘)
    data = raw_input(‘请输入内容:‘)
    if num == ‘1‘:
        fetch(data)
    else:
        dict_data = json.loads(data)
        if num == ‘2‘:
            add(dict_data)
        elif num == ‘3‘:
            remove(dict_data)
        else:
            pass
时间: 2024-10-22 04:22:21

在线修改ha.proxy配置文件的相关文章

为VisualSVN Server增加在线修改用户密码的功能

原文:为VisualSVN Server增加在线修改用户密码的功能 附件下载:点击下载 VisualSVN Server是一个非常不错的SVN Server程序,方便,直观,用户管理也异常方便. 不过,它本身并没有提供在线修改密码的功能.由于在实际使用过程中,一旦SVN的用户比较多,只单单依靠windows的管理控制台去修改密码 显然是不太合适的. 总不能任何人想改个密码还要通过管理员吧?所以,就想为其增加在线修改密码的功能. 说实话,网上已经有了可以在线修改密码的方法.试用过,也的确可以.不过

在线修改表结构mysql5.5版本和pt-online-schema-change

一.测试环境 系统:Centos 6.2 数据库:mysql Ver 14.14 Distrib 5.5.18, for Linux (x86_64) using readline 5.1 percona工具:percona-toolkit-2.2.12 测试数据库大小:tx_ljxz_71--16G.t_log_item--3G 二.在线修改表结构的过程 mysql在线修改表结构 1 按照原始表(original_table)的表结构和DDL语句,新建一个不可见的临时表(tmp_table)

MYSQL 从库过滤在线修改

有时候,我们要对从库做在线修改过滤表的参数,刚开始的时候我们是直接修改配置文件的. 现在我们可以直接修改,比如我们修改Replicate_Do_Table 从库复制指定的表: 可以执行以下指令 1. stop slave: 关闭 从库复制 2. 修改: CHANGE REPLICATION FILTER Replicate_Do_Table=(ios_logs.money_change_20191027,ios_logs.money_change_20191101); 3.start slave

在线修改主从复制选项

前言:? MySQL最常用的架构就是主从复制了,其实主从复制有很多选项,特别是在从库端,我们可以设置复制过滤,比如说忽略某张表或某个库.这些过滤选项都是可以在线修改而不用重启的.原来对这块了解不多,最近看了下相关资料,个人觉得这个功能还是很方便的,本篇文章会将这块内容分享给大家. 1.复制过滤参数介绍 首先我们要了解设置复制过滤的不同参数.复制过滤是在从库端设置的,可以只复制某些库或某些表,也可以忽略复制某些库或某些表.这些都是由不同参数控制的,下面简单介绍下不同参数的作用. REPLICATE

MySQL在线修改表结构pt-osc

MySQL在线修改表结构pt-osc 重所周知 MySQL的DDL操作操作是相比比较昂贵的.因为MySQL在修改表期间会阻塞任何读写操作. 基本上业务处于瘫痪.如果数据量较大可能需要好几个小时才能完成,无法容忍这个操作.Percona开发了一系列的工具 Percona Toolkit包,其中有一个工具pt-online-schema-change可以在线执行DDL操作,不会阻塞读写操作从而影响业务程序.当然也有其他的工具 例如 MySQL5.6的online ddl 还有gh-ost 本文主要讲

WinForm修改App.config配置文件功能

WinForm修改App.config配置文件主要是通过System.Configuration.dll里ConfigurationManager类来实现,在功能开发前是需要手动引用该dll文件. ConfigurationManager 类包括可用来执行以下任务的成员: ?从配置文件中读取一个节.若要访问配置信息,请调用 GetSection 方法.对于某些节,例如 appSettings 和 connectionStrings,请使用 AppSettings 和 ConnectionStri

MySQL使用pt-online-change-schema工具在线修改1.6亿级数据表结构

摘  要:本文阐述了MySQL DDL 的问题现状.pt-online-schema-change的工作原理,并实际利用pt-online-schema-change工具在线修改生产环境下1.6亿级数据表结构. 在一个软件生命周期中,我们都知道,前期的表结构设计是非常重要的,因为当表数据量一上来后再进行表结构修改危险性比较大,而且要操作的时间也比较长. 在笔者参与的项目中,就曾遇到这样一个问题,首先上去查看了一下该表的信息,已有约2亿的数据量,而且每分钟还要并发写入4万条记录,而由于这个表有一个

Python-S13作业-day3-之编辑ha.conf配置文件

Python-S13作业-day3-之编辑ha.conf配置文件

在线修改图片尺寸缩放网站(完美解决图片过大无法上传问题)

在线修改图片尺寸缩放网站(完美解决图片过大无法上传问题) http://pic.sdodo.com/tool/picadjust/ http://www.zhengzong.cn/bbsxp/thread-8136-1-1.html 一次使用windows xp用头像是用到 因头像尺寸标准为48*48 Look! 成功修改的小猫咪! Windows Xp / 2003用户头像位置 C:\Documents and Settings\All Users\Application Data\Micro