Skip to content
DBC-WikiDBC-Wiki
github icon
  • 安装&升级DBC节点

      • 安装 DBC 算力节点
        • 升级 DBC 算力节点
          • 安装和升级 DBC 客户端
            • 部署镜像中心

          部署镜像中心

          calendar icon2022年4月21日timer icon大约 2 分钟

          # 部署镜像中心

          • 操作系统:ubuntu

          • 设置开机启动 rsync-daemonsudo vim /etc/default/rsync 将 false 改为 true: RSYNC_ENABLE=true

          • 修改配置文件 rsyncd.conf

            手动复制: sudo cp /usr/share/doc/rsync/examples/rsyncd.conf /etc

            修改 /etc/rsyncd.conf:

            ######### 全局: 配置参数 ##########
            port=873    # 指定rsync端口。默认873
            uid = nobody # rsync服务的运行用户,默认是nobody,文件传输成功后属主将是这个uid
            gid = nogroup # rsync服务的运行组,默认是nobody,文件传输成功后属组将是这个gid
            use chroot = yes # rsync daemon在传输前是否切换到指定的path目录下,并将其监禁在内
            max connections = 0 # 指定最大连接数量,0表示没有限制
            timeout = 60  # 确保rsync服务器不会永远等待一个崩溃的客户端,0表示永远等待
            motd file = /var/rsyncd/rsync.motd   # 客户端连接过来显示的消息
            lock file = /var/run/rsync.lock      # 指定锁文件
            log file = /var/log/rsyncd.log       # 指定rsync的日志文件,而不把日志发送给syslog
            dont compress = *.gz *.tgz *.zip *.z *.Z *.rpm *.deb *.bz2  # 指定哪些文件不用进行压缩传输
            
            ######### 模块: 配置参数 ##########
            [images]        # 模块ID
            path = /data/ # 指定该模块的路径,启动rsync服务前该目录必须存在
            ignore errors = yes     # 忽略某些IO错误信息
            ignore nonreadable = yes
            read only = no  # 指定该模块是否可读写,即能否上传文件,no表示可读写,yes表示可读不可写
            write only = no # 指定该模式是否支持下载,设置为yes表示客户端不能下载
            list = no       # 客户端请求显示模块列表时,该模块是否显示出来,设置为no则该模块为隐藏模块
            # hosts deny = 0.0.0.0/32   # 指定不允许连接到该模块的机器
            transfer logging = no
            strict modes = yes
            
            1
            2
            3
            4
            5
            6
            7
            8
            9
            10
            11
            12
            13
            14
            15
            16
            17
            18
            19
            20
            21
            22
            23
          • 启动

            rsync --daemon

          • 客户端节点上配置镜像中心地址

            image_server=<id>,<ip>,<port>,<modulename>

            id: 用户自定义 ID,用于标识改镜像中心

            ip: 镜像中心 ip 地址

            port: 镜像中心服务器上 rsync-server 的监听地址,默认 873,见上述配置文件

            modulename: 镜像中心上配置的模块 ID,默认 images,见上述配置文件

            示例:

            image_server=ID_1,127.0.0.1,22,873,images

          edit icon编辑此页open in new window
          上次编辑于: 2022/4/21 05:40:56
          贡献者: cuijg
          上一页
          安装和升级 DBC 客户端