前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >云同步网盘-seafile

云同步网盘-seafile

作者头像
suveng
发布2019-09-17 11:35:18
5.2K0
发布2019-09-17 11:35:18
举报
文章被收录于专栏:分享/效率/工具/软件

版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。

本文链接:https://blog.csdn.net/qq_37933685/article/details/100878407

云同步网盘-seafile

环境

docker-compose搭建seafile server

  • compose文件 version: '2.0' services: db: image: mariadb:10.1 container_name: seafile-mysql environment: - MYSQL_ROOT_PASSWORD=root # Requested, set the root's password of MySQL service. - MYSQL_LOG_CONSOLE=true volumes: - /root/seafile/seafile-mysql/db:/var/lib/mysql # Requested, specifies the path to MySQL data persistent store. networks: - seafile-net memcached: image: memcached:1.5.6 container_name: seafile-memcached entrypoint: memcached -m 256 networks: - seafile-net seafile: image: seafileltd/seafile-mc:latest container_name: seafile ports: - "50501:80" # - "443:443" # If https is enabled, cancel the comment. volumes: - /root/seafile/seafile-data:/shared # Requested, specifies the path to Seafile data persistent store. environment: - DB_HOST=db - DB_ROOT_PASSWD=root # Requested, the value shuold be root's password of MySQL service. # - TIME_ZONE=Asia/Shanghai # Optional, default is UTC. Should be uncomment and set to your local time zone. - SEAFILE_ADMIN_EMAIL=suveng@163.com # Specifies Seafile admin user, default is 'me@example.com'. - SEAFILE_ADMIN_PASSWORD=admin # Specifies Seafile admin password, default is 'asecret'. - SEAFILE_SERVER_LETSENCRYPT=false # Whether to use https or not. - SEAFILE_SERVER_HOSTNAME=192.168.9.233:50501 # Specifies your host name if https is enabled. depends_on: - db - memcached networks: - seafile-net networks: seafile-net:
  • 启动 #安装docker-compse yum install docker-compose -y #在compose文件所在的目录下 docker-compose up -d
  • 查看 docker ps 应该会看到namesseafile seafile-mysql seafile-memcached三个容器已经启动 如果没有看到,那么可能检查一下配置文件,看看mysqldata的路径和seafile data的路径是否存在,如果不存在,可以先创建. 提示: 建议找一个比较大的磁盘空的目录存放.毕竟是云盘.

使用

  • 搭建一个seafile server 这个已经在上面搭建好了,地址就是你搭建的那台内网服务器的 ip:50501, 如果你没改配置的话
  • 下载客户端使用 值得称赞的是,这个seafile他拥有跨平台的客户端,而且使用也简单,但是注意我们现在使用的是免费版,如果需要专业版可以去购买.传送门
    • Mac
    • Linux
    • Windows
    • Android
    • iPad/iPhone
  • 在seafile server开通账号
    • 先使用管理员账号登录上去 默认管理员账号在docker-compose.yml的配置文件上, SEAFILE_ADMIN_EMAIL=suveng@163.com,SEAFILE_ADMIN_PASSWORD=admin 登录上去即可,当然你也可以在搭建的时候改掉配置.
    • 在系统管理添加账号
      • 可以用Excel导入
      • 可以手动添加

我的博客即将同步至腾讯云+社区,邀请大家一同入驻:https://cloud.tencent.com/developer/support-plan?invite_code=28nptogbt1nos

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2019年09月16日,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 云同步网盘-seafile
    • 环境
      • docker-compose搭建seafile server
        • 使用
        相关产品与服务
        容器镜像服务
        容器镜像服务(Tencent Container Registry,TCR)为您提供安全独享、高性能的容器镜像托管分发服务。您可同时在全球多个地域创建独享实例,以实现容器镜像的就近拉取,降低拉取时间,节约带宽成本。TCR 提供细颗粒度的权限管理及访问控制,保障您的数据安全。
        领券
        问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档