Sabtu, 23 Desember 2017

AUTOMATION BACKUP FILE USE SEAFILE SERVER

  1. Centos intalltion with minimum option
  2. #yum -y update 
  3. Check centos installtion for selinux setting #cat /etc/redhat-release;sestatus;hostname;hostname -I
  4. we have to set selinux status become disable by edit the selinux config file #vi /etc/selinux/config change config file "SELINUX=enforcing to SELINUX=disabled" then reboot
  5. yum -y install epel-release python-imaging python-setuptools python-simplejson MySQL-python mariadb mariadb-server nginx wget
  6. Download seafile server setup file from seafile-server-6.2.3-64bit #wget https://download.seadrive.org/seafile-server_6.2.3_x86-64.tar.gz
  7. #mkdir -p /var/www/seafile
  8. #mv seafile-server_6.2.3_x86-64.tar.gz /var/www/seafile
  9. #cd /var/www/seafile
  10. #tar -xzvf seafile-server_6.2.3_x86-64.tar.gz
  11. #mv seafile-server_6.2.3 /seafile-server
  12. #systemctl start mariadb
  13. #systemctl enable mariadb
  14. #mysql_secure_installation 
  15. #./setup-seafile-mysql.sh 
For compleete documentation please follow this link







AUTOMATION BACKUP FILE USE SEAFILE SERVER

Centos intalltion with minimum option #yum -y update  Check centos installtion for selinux setting #cat /etc/redhat-release;sestatus;ho...