搭建个人网盘

在这个数据爆炸的时代,大部分人已经离不开个人云存储---网盘,但是遗憾的是大多数网盘陆续停止了服务。

一、准备域名

域名解析(我是在阿里云设置的)


二、安装 Seafile

安装依赖,使用 yum 安装 Python 及 MySQL、启动 MariaDB 服务、配置 MySQL

yum install python python-setuptools python-imaging python-ldap python-memcached MySQL-python mariadb mariadb-server

systemctl start mariadb.service && systemctl enable mariadb.service

/usr/bin/mysql_secure_installation

安装 Seafile

wget https://mc.qcloudimg.com/static/archive/3d8addbe52be88df4f6139ec7e35b453/seafile-server_5.1.4_x86-64.tar.gz

tar -zxvf seafile-server_5.1.4_x86-64.tar.gz

mkdir -p /opt/seafile/installed

mv seafile-server_5.1.4_x86-64.tar.gz /opt/seafile/installed

mv seafile-server-5.1.4/ /opt/seafile

cd /opt/seafile/seafile-server-5.1.4

./setup-seafile-mysql.sh

你可能感兴趣的:(搭建个人网盘)