收藏文章 楼主

CentOS 7一键安装Seafile 验证消息,在线服务 搭建私有云存储

版块:linux   类型:普通   作者:小绿叶技术博客   查看:735   回复:0   获赞:0   时间:2021-10-23 13:18:29




#!/bin/bash

################ 一键安装Seafile脚本 ##################

#Author:xiaoz.me

#Update:2018-03-09

#######################   END   #######################


#防火墙放行端口

function chk_firewall() {

if [ -e "/etc/sysconfig/iptables" ]

then

iptables -I INPUT -p tcp --dport 8000 -j ACCEPT

iptables -I INPUT -p tcp --dport 8082 -j ACCEPT

service iptables save

service iptables restart

else

firewall-cmd --zone=public --add-port=8000/tcp --permanent

firewall-cmd --zone=public --add-port=8082/tcp --permanent

firewall-cmd --reload

fi

}


#安装seafile函数

function install_sea() {

cd /home/MyCloud

#下载安装包6.2.3 64bit

wget http://seafile-downloads.oss-cn-shanghai.aliyuncs.com/seafile-server_6.2.3_x86-64.tar.gz

#解压

tar -zxvf seafile-server_6.2.3_x86-64.tar.gz

mkdir installed

mv seafile-server*.tar.gz ./installed

mv seafile-server-6* seafile-server

#安装依赖环境

yum -y install python-setuptools python-imaging python-ldap MySQL-python python-memcached python-urllib3

#进行安装

cd seafile-server && ./setup-seafile.sh

#启动服务

./seafile.sh start &&  ./seahub.sh start

#防火墙放行端口

chk_firewall

#开机启动

echo "/home/MyCloud/seafile-server/seafile.sh start" >> /etc/rc.d/rc.local

echo "/home/MyCloud/seafile-server/seahub.sh start" >> /etc/rc.d/rc.local

chmod u+x /etc/rc.d/rc.local

#获取IP

osip=$(curl https://api.ip.sb/ip)

echo "------------------------------------------------------"

echo "恭喜,安装完成。请访问:http://${osip}:8000"

echo "帮助文档请访问:https://www.xiaoz.me/archives/8480"

echo "阿里云用户请注意放行端口(8000/8082):https://www.xiaoz.me/archives/9310"

echo "------------------------------------------------------"

}


echo "########## 欢迎使用Seafile一键安装脚本^_^ ##########"


echo "1.安装Seafile"

echo "2.卸载Seafile"

echo "3.退出"

declare -i stype

read -p "请输入选项:(1.2.3):" stype


if [ "$stype" == 1 ]

then

#检查目录是否存在

if [ -e "/home/MyCloud" ]

then

echo "目录存在,请检查是否已经安装。"

exit

else

echo "目录不存在,创建目录..."

mkdir -p /home/MyCloud

#执行安装函数

install_sea

fi

elif [ "$stype" == 2 ]

then

/home/MyCloud/seafile-server/seafile.sh stop

/home/MyCloud/seafile-server/seahub.sh stop

rm -rf /home/MyCloud

rm -rf /tmp/seahub_cache/*

echo '卸载完成.'

exit

elif [ "$stype" == 3 ]

then

exit

else

echo "参数错误!"

fi



seafile:   https://www.seafile.com/download/

提供企业建站服务,免费网防系统,提交信息登录 http://yundun.ddoss.cn 邮箱: proposal@ddoss.cn 
回复列表
默认   热门   正序   倒序

回复:CentOS 7一键安装Seafile 验证消息,在线服务 搭建私有云存储

头像

用户名:

粉丝数:

签名:

资料 关注 好友 消息