首页 > 代码库 > Centos7、最小化版服务器之Sync安装

Centos7、最小化版服务器之Sync安装

  1. 安装必要的一些组件;

    #!/bin/bash -yum install epel-release -y yum install vim-e* system-control-firewall-tui-y wget*

  2. 选择目录下载;

    wget https://download-cdn.resilio.com/stable/linux-x64/resilio-sync_x64.tar.gz

  3. 解压缩包,获得执行文件rslsync执行文件;

    tar -zxvf  resilio-sync_x64.tar.gz

    ./rslsync --help

    Resilio Sync 2.4.2 (708)
    Usage:
          rslsync [ options ... ]
    Options:
        --help                    Print this message
        --config <path>           Use a configuration file
        --storage <path>          Storage path for identity and license
        --identity <user name>    Creates user identity
        --license <path>          Apply owner license
        --nodaemon                Do not daemonize
        --dump-sample-config      Print a sample configuration file
        --log <file>              Set log file
        --webui.listen <IP>:<port> Set the webui listening interface   //设置web ui监听接口
        --generate-secret         Generate a read/write key
        --get-ro-secret <r/w key> Get the read-only key associated to a read/write key

  4. 运行rslsync程序;

    ./rslsync --webui.listen 0.0.0.0 8888      //0.0.0.0代表任意

  5. 完成,在浏览器配置rslsync,路径:http://服务器的地址:8888

  6. 记得开放Firewalls端口8888

    firewall-cmd --add-port=8888/tcp --permanent


本文出自 “IT技术博客” 博客,请务必保留此出处http://weonline.blog.51cto.com/1467072/1879325

Centos7、最小化版服务器之Sync安装