seafile-server-installer-cn/seafile-server-ubuntu-14-04-amd64-http

498 lines
16 KiB
Plaintext
Raw Normal View History

2015-05-27 10:37:38 +00:00
#!/bin/bash
#
2016-05-12 06:02:42 +00:00
# seafile-server-installer/seafile-server-ubuntu-14-04-amd64
2015-05-27 10:37:38 +00:00
#
# Copyright 2015, Alexander Jackson <alexander.jackson@seafile.de>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
#
2015-12-08 11:30:08 +00:00
2015-12-08 12:14:18 +00:00
if [[ $HOME == "" ]]; then
export HOME=/root
fi
2015-12-08 11:30:08 +00:00
if [[ $SEAFILE_DEBUG != "" ]]; then
set -x
fi
2015-11-04 06:28:00 +00:00
set -e
2015-05-27 10:37:38 +00:00
2015-11-04 06:28:00 +00:00
if [[ "$#" -ne 1 ]]; then
echo "You must specif Seafile version to install"
2015-11-04 06:28:00 +00:00
echo "Like: $0 4.4.2"
exit 1
fi
2015-05-27 10:37:38 +00:00
clear
cat <<EOF
2015-11-04 06:28:00 +00:00
This script installs the community edition of the Seafile Server on a Ubuntu 14.04 (Trusty) 64bit
2015-05-27 10:37:38 +00:00
- Newest Seafile server version, MariaDB, Memcached, NGINX -
-----------------------------------------------------------------
This installer is meant to run on a freshly installed machine
only. If you run it on a production server things can and
probably will go terrible wrong and you will loose valuable
data!
2015-11-04 06:28:00 +00:00
For questions or suggestions please contact us at
support@seafile.com
2015-05-27 10:37:38 +00:00
-----------------------------------------------------------------
2015-11-04 06:28:00 +00:00
Possible options:
1 = Seafile Community (Free) Edition (CE)
2 = Seafile Professional Edition (PRO)
2015-05-27 10:37:38 +00:00
EOF
2015-11-04 06:28:00 +00:00
2015-12-08 11:30:08 +00:00
if [[ ${SEAFILE_PRO} == "" ]]; then
PS3="Which Seafile version would you like to install? "
select SEAFILE_SERVER_VERSION in CE PRO ABORT; do
case "${SEAFILE_SERVER_VERSION}" in
ABORT)
echo "Aborting"
break
;;
"")
echo "$REPLY: Wrong value. Select 1 or 2."
;;
*)
if [[ ${SEAFILE_SERVER_VERSION} = "PRO" ]]; then
SEAFILE_PRO=1
else
SEAFILE_PRO=0
fi
break
esac
done
fi
2015-11-04 06:28:00 +00:00
is_pro() {
if [[ "$SEAFILE_PRO" == "1" ]]; then
return 0
else
return 1
fi
}
echo
if is_pro; then
echo "This script will install Seafile Professional Edition for you."
else
echo "This script will install Seafile Community Edition for you."
fi
echo
# -------------------------------------------
# Vars
# -------------------------------------------
SEAFILE_ADMIN=admin@seafile.local
IP_OR_DOMAIN=$(hostname -i)
SEAFILE_VERSION=$1
TIME_ZONE=Asia/Shanghai
if is_pro; then
SEAFILE_SERVER_PACKAGE=seafile-pro-server_${SEAFILE_VERSION}_x86-64.tar.gz
if [[ ! -e /opt/$SEAFILE_SERVER_PACKAGE ]]; then
echo
echo "You must download \"$SEAFILE_SERVER_PACKAGE\" to the /opt/ folder before running this script!"
echo
exit 1
fi
INSTALLPATH=/opt/seafile/seafile-pro-server-${SEAFILE_VERSION}/
else
SEAFILE_SERVER_PACKAGE=seafile-server_${SEAFILE_VERSION}_x86-64.tar.gz
SEAFILE_SERVER_PACKAGE_URL=http://download-cn.seafile.com/${SEAFILE_SERVER_PACKAGE}
INSTALLPATH=/opt/seafile/seafile-server-${SEAFILE_VERSION}/
fi
2015-05-27 10:37:38 +00:00
# -------------------------------------------
# Ensure we are running the installer as root
# -------------------------------------------
if [[ $EUID -ne 0 ]]; then
echo " Aborting because you are not root" ; exit 1
fi
# -------------------------------------------
# Abort if directory /opt/seafile/ exists
# -------------------------------------------
if [[ -d "/opt/seafile/" ]] ;
then
echo " Aborting because directory /opt/seafile/ already exist" ; exit 1
fi
# -------------------------------------------
# Additional requirements
# -------------------------------------------
2015-11-04 06:28:00 +00:00
apt-get update
apt-get install -y sudo python-pip python-setuptools python-imaging python-mysqldb python-ldap python-urllib3 \
2015-11-04 06:28:00 +00:00
openjdk-7-jre memcached python-memcache pwgen curl openssl poppler-utils libpython2.7 libreoffice \
libreoffice-script-provider-python ttf-wqy-microhei ttf-wqy-zenhei xfonts-wqy nginx python-requests
2015-05-27 10:37:38 +00:00
2015-05-29 05:23:51 +00:00
rm /etc/nginx/sites-enabled/*
2015-05-27 10:37:38 +00:00
2015-05-29 05:19:09 +00:00
cat > /etc/nginx/sites-available/seafile.conf <<'EOF'
2015-05-27 10:37:38 +00:00
server {
listen 80;
server_name "";
location / {
fastcgi_pass 127.0.0.1:8000;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_script_name;
fastcgi_param SERVER_PROTOCOL $server_protocol;
fastcgi_param QUERY_STRING $query_string;
fastcgi_param REQUEST_METHOD $request_method;
fastcgi_param CONTENT_TYPE $content_type;
fastcgi_param CONTENT_LENGTH $content_length;
fastcgi_param SERVER_ADDR $server_addr;
fastcgi_param SERVER_PORT $server_port;
fastcgi_param SERVER_NAME $server_name;
access_log /var/log/nginx/seahub.access.log;
error_log /var/log/nginx/seahub.error.log;
}
location /seafhttp {
rewrite ^/seafhttp(.*)$ $1 break;
proxy_pass http://127.0.0.1:8082;
client_max_body_size 0;
proxy_connect_timeout 36000s;
proxy_read_timeout 36000s;
}
location /media {
root /opt/seafile/seafile-server-latest/seahub;
}
location /seafdav {
fastcgi_pass 127.0.0.1:8080;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_script_name;
fastcgi_param SERVER_PROTOCOL $server_protocol;
fastcgi_param QUERY_STRING $query_string;
fastcgi_param REQUEST_METHOD $request_method;
fastcgi_param CONTENT_TYPE $content_type;
fastcgi_param CONTENT_LENGTH $content_length;
fastcgi_param SERVER_ADDR $server_addr;
fastcgi_param SERVER_PORT $server_port;
fastcgi_param SERVER_NAME $server_name;
client_max_body_size 0;
access_log /var/log/nginx/seafdav.access.log;
error_log /var/log/nginx/seafdav.error.log;
}
}
2015-05-27 10:37:38 +00:00
EOF
2015-11-04 06:28:00 +00:00
ln -sf /etc/nginx/sites-available/seafile.conf /etc/nginx/sites-enabled/seafile.conf
2015-05-27 10:37:38 +00:00
service nginx restart
# -------------------------------------------
# MariaDB
# -------------------------------------------
if [[ -f "/root/.my.cnf" ]] ;
then
echo "MariaDB installed before, skip this part"
else
2015-11-04 06:28:00 +00:00
DEBIAN_FRONTEND=noninteractive apt-get install -y mariadb-server
2015-05-27 10:37:38 +00:00
SQLROOTPW=$(pwgen)
2015-05-27 10:37:38 +00:00
mysqladmin -u root password $SQLROOTPW
2015-05-27 10:37:38 +00:00
cat > /root/.my.cnf <<EOF
2015-05-27 10:37:38 +00:00
[client]
user=root
password=$SQLROOTPW
EOF
chmod 600 /root/.my.cnf
fi
2015-05-27 10:37:38 +00:00
# -------------------------------------------
# Seafile init script
# -------------------------------------------
cat > /etc/init.d/seafile-server <<'EOF'
#!/bin/bash
### BEGIN INIT INFO
# Provides: seafile-server
# Required-Start: $remote_fs $syslog mysql
# Required-Stop: $remote_fs $syslog
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: Seafile server
# Description: Start Seafile server
### END INIT INFO
# Author: Alexander Jackson <alexander.jackson@seafile.com.de>
# Change the value of "seafile_dir" to your path of seafile installation
seafile_dir=/opt/seafile
script_path=${seafile_dir}/seafile-server-latest
seafile_init_log=${seafile_dir}/logs/seafile.init.log
seahub_init_log=${seafile_dir}/logs/seahub.init.log
# Change the value of fastcgi to true if fastcgi is to be used
fastcgi=true
# Set the port of fastcgi, default is 8000. Change it if you need different.
fastcgi_port=8000
case "$1" in
start)
2016-05-12 06:02:42 +00:00
${script_path}/seafile.sh start >> ${seafile_init_log}
2015-05-27 10:37:38 +00:00
if [ $fastcgi = true ];
then
2016-05-12 06:02:42 +00:00
${script_path}/seahub.sh start-fastcgi ${fastcgi_port} >> ${seahub_init_log}
2015-05-27 10:37:38 +00:00
else
2016-05-12 06:02:42 +00:00
${script_path}/seahub.sh start >> ${seahub_init_log}
2015-05-27 10:37:38 +00:00
fi
;;
restart)
2016-05-12 06:02:42 +00:00
${script_path}/seafile.sh restart >> ${seafile_init_log}
2015-05-27 10:37:38 +00:00
if [ $fastcgi = true ];
then
2016-05-12 06:02:42 +00:00
${script_path}/seahub.sh restart-fastcgi ${fastcgi_port} >> ${seahub_init_log}
2015-05-27 10:37:38 +00:00
else
2016-05-12 06:02:42 +00:00
${script_path}/seahub.sh restart >> ${seahub_init_log}
2015-05-27 10:37:38 +00:00
fi
;;
stop)
2016-05-12 06:02:42 +00:00
${script_path}/seafile.sh $1 >> ${seafile_init_log}
${script_path}/seahub.sh $1 >> ${seahub_init_log}
2015-05-27 10:37:38 +00:00
;;
*)
echo "Usage: /etc/init.d/seafile-server {start|stop|restart}"
exit 1
;;
esac
EOF
chmod +x /etc/init.d/seafile-server
update-rc.d seafile-server defaults
# -------------------------------------------
# Seafile
# -------------------------------------------
mkdir -p /opt/seafile/installed
cd /opt/seafile/
2015-11-04 06:28:00 +00:00
if ! is_pro && [[ ! -e /opt/${SEAFILE_SERVER_PACKAGE} ]]; then
2015-06-18 03:38:36 +00:00
curl -OL ${SEAFILE_SERVER_PACKAGE_URL}
else
cp /opt/${SEAFILE_SERVER_PACKAGE} .
fi
tar xzf ${SEAFILE_SERVER_PACKAGE}
2015-05-27 10:37:38 +00:00
mv ${SEAFILE_SERVER_PACKAGE} installed
2015-05-27 10:37:38 +00:00
# -------------------------------------------
# Seafile DB
# -------------------------------------------
SQLSEAFILEPW=$(pwgen)
cat > /opt/seafile/.my.cnf <<EOF
[client]
user=seafile
password=$SQLSEAFILEPW
EOF
chmod 600 /opt/seafile/.my.cnf
# -------------------------------------------
2015-11-04 06:28:00 +00:00
# Go to /opt/seafile/seafile-pro-server-${SEAFILE_VERSION}
2015-05-27 10:37:38 +00:00
# -------------------------------------------
2015-11-04 06:28:00 +00:00
cd $INSTALLPATH
2015-05-27 10:37:38 +00:00
# -------------------------------------------
# Vars - Don't touch these unless you really know what you are doing!
# -------------------------------------------
TOPDIR=$(dirname "${INSTALLPATH}")
DEFAULT_CONF_DIR=${TOPDIR}/conf
SEAFILE_DATA_DIR=${TOPDIR}/seafile-data
DEST_SETTINGS_PY=${TOPDIR}/conf/seahub_settings.py
2015-05-27 10:37:38 +00:00
mkdir -p ${DEFAULT_CONF_DIR}
2015-05-27 10:37:38 +00:00
# -------------------------------------------
2016-05-12 06:02:42 +00:00
# Create ccnet, seafile, seahub conf using setup script
2015-05-27 10:37:38 +00:00
# -------------------------------------------
2016-05-12 06:02:42 +00:00
./setup-seafile-mysql.sh auto -u seafile -w ${SQLSEAFILEPW} -r ${SQLROOTPW}
2015-05-27 10:37:38 +00:00
# -------------------------------------------
# Configure Seafile WebDAV Server(SeafDAV)
# -------------------------------------------
2016-05-12 06:02:42 +00:00
sed -i 's/enabled = .*/enabled = true/' ${DEFAULT_CONF_DIR}/seafdav.conf
sed -i 's/fastcgi = .*/fastcgi = true/' ${DEFAULT_CONF_DIR}/seafdav.conf
sed -i 's/share_name = .*/share_name = \/seafdav/' ${DEFAULT_CONF_DIR}/seafdav.conf
2015-05-27 10:37:38 +00:00
# -------------------------------------------
# Configuring seahub_settings.py
# -------------------------------------------
cat >> ${DEST_SETTINGS_PY} <<EOF
CACHES = {
'default': {
'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache',
'LOCATION': '127.0.0.1:11211',
}
}
# EMAIL_USE_TLS = False
# EMAIL_HOST = 'localhost'
# EMAIL_HOST_USER = ''
# EMAIL_HOST_PASSWORD = ''
# EMAIL_PORT = '25'
# DEFAULT_FROM_EMAIL = EMAIL_HOST_USER
# SERVER_EMAIL = EMAIL_HOST_USER
TIME_ZONE = '${TIME_ZONE}'
2015-05-27 10:37:38 +00:00
SITE_BASE = 'http://${IP_OR_DOMAIN}'
SITE_NAME = 'Seafile Server'
SITE_TITLE = 'Seafile Server'
SITE_ROOT = '/'
ENABLE_SIGNUP = False
ACTIVATE_AFTER_REGISTRATION = False
SEND_EMAIL_ON_ADDING_SYSTEM_MEMBER = True
SEND_EMAIL_ON_RESETTING_USER_PASSWD = True
CLOUD_MODE = False
FILE_PREVIEW_MAX_SIZE = 30 * 1024 * 1024
SESSION_COOKIE_AGE = 60 * 60 * 24 * 7 * 2
SESSION_SAVE_EVERY_REQUEST = False
SESSION_EXPIRE_AT_BROWSER_CLOSE = False
2015-05-27 10:37:38 +00:00
FILE_SERVER_ROOT = 'http://${IP_OR_DOMAIN}/seafhttp'
EOF
# -------------------------------------------
# Backup check_init_admin.py befor applying changes
# -------------------------------------------
cp ${INSTALLPATH}/check_init_admin.py ${INSTALLPATH}/check_init_admin.py.backup
# -------------------------------------------
# Set admin credentials in check_init_admin.py
# -------------------------------------------
SEAFILE_ADMIN_PW=$(pwgen)
eval "sed -i 's/= ask_admin_email()/= \"${SEAFILE_ADMIN}\"/' ${INSTALLPATH}/check_init_admin.py"
eval "sed -i 's/= ask_admin_password()/= \"${SEAFILE_ADMIN_PW}\"/' ${INSTALLPATH}/check_init_admin.py"
# -------------------------------------------
# Start and stop Seafile eco system. This generates the initial admin user.
# -------------------------------------------
2015-11-04 06:28:00 +00:00
${INSTALLPATH}/seafile.sh start
${INSTALLPATH}/seahub.sh start
2016-12-26 07:48:11 +00:00
sleep 2 # sleep for a while, otherwise seahub will not be stopped
2015-11-04 06:28:00 +00:00
${INSTALLPATH}/seahub.sh stop
2016-12-26 07:48:11 +00:00
sleep 1
2015-11-04 06:28:00 +00:00
${INSTALLPATH}/seafile.sh stop
2015-05-27 10:37:38 +00:00
# -------------------------------------------
# Restore original check_init_admin.py
# -------------------------------------------
mv ${INSTALLPATH}/check_init_admin.py.backup ${INSTALLPATH}/check_init_admin.py
2015-11-04 06:28:00 +00:00
if is_pro; then
PRO_PY=${INSTALLPATH}/pro/pro.py
2016-07-28 02:28:15 +00:00
$PYTHON ${PRO_PY} setup --mysql --mysql_host=127.0.0.1 --mysql_port=3306 --mysql_user=seafile --mysql_password=${SQLSEAFILEPW} --mysql_db=seahub_db
sed -i 's/enabled = false/enabled = true/' ${TOPDIR}/conf/seafevents.conf
2015-11-04 06:28:00 +00:00
fi
2015-05-27 10:37:38 +00:00
# -------------------------------------------
# Start seafile server
# -------------------------------------------
echo "Starting productive Seafile server"
service seafile-server start
# -------------------------------------------
# Final report
# -------------------------------------------
cat > ${TOPDIR}/aio_seafile-server.log<<EOF
2015-05-27 10:37:38 +00:00
Your Seafile server is installed
-----------------------------------------------------------------
Server Address: http://${IP_OR_DOMAIN}
Seafile Admin: ${SEAFILE_ADMIN}
Admin Password: ${SEAFILE_ADMIN_PW}
Seafile Data Dir: ${SEAFILE_DATA_DIR}
Seafile DB Credentials: Check /opt/seafile/.my.cnf
Root DB Credentials: Check /root/.my.cnf
This report is also saved to ${TOPDIR}/aio_seafile-server.log
2015-05-27 10:37:38 +00:00
Next you should manually complete the following steps
-----------------------------------------------------------------
1) Run seafile-server-change-address to add your Seafile servers DNS name
2) If this server is behind a firewall, you need to ensure that
tcp port 80 is open.
3) Seahub tries to send emails via the local server. Install and
configure Postfix for this to work.
Optional steps
-----------------------------------------------------------------
1) Check seahub_settings.py and customize it to fit your needs. Consult
http://manual.seafile.com/config/seahub_settings_py.html for possible switches.
2) Setup NGINX with official SSL certificate.
3) Secure server with iptables based firewall. For instance: UFW or shorewall
4) Harden system with port knocking, fail2ban, etc.
5) Enable unattended installation of security updates. Check
https://wiki.Ubuntu.org/UnattendedUpgrades for details.
6) Implement a backup routine for your Seafile server.
7) Update NGINX worker processes to reflect the number of CPU cores.
Seafile support options
-----------------------------------------------------------------
2016-11-07 02:49:59 +00:00
For free community support visit: https://bbs.seafile.com
2015-11-04 06:28:00 +00:00
For paid commercial support visit: https://seafile.com
2015-05-27 10:37:38 +00:00
EOF
chmod 600 ${TOPDIR}/aio_seafile-server.log
2015-05-27 10:37:38 +00:00
clear
cat ${TOPDIR}/aio_seafile-server.log