Created
January 8, 2018 06:14
-
-
Save gene1wood/ea8fe5c897ae34bd5d466970fc0c1b93 to your computer and use it in GitHub Desktop.
How to install Duplicati on CentOS 6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Install mono | |
rpm --import "http://keyserver.ubuntu.com/pks/lookup?op=get&search=0x3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF" | |
yum-config-manager --add-repo http://download.mono-project.com/repo/centos6/ | |
yum install mono-complete | |
# Install duplicati, ignoring dependencies | |
wget https://updates.duplicati.com/beta/duplicati-2.0.2.1-2.0.2.1_beta_20170801.noarch.rpm | |
rpm -ivh --nodeps duplicati-2.0.2.1-2.0.2.1_beta_20170801.noarch.rpm | |
# Create init script and enable the service | |
wget https://gist.githubusercontent.com/gene1wood/af556f68c421905598a7f6382616ed4a/raw/c964060e2f579b1a7d4f0c915423dda970059688/duplicati -O /etc/init.d/duplicati | |
chmod 755 /etc/init.d/duplicati | |
chkconfig --add duplicati | |
chkconfig duplicati on | |
service duplicati start |
All OK but how to open GUI ??
@trandafile @w3servicesdotnet I'm not sure. I've moved to using Duplicacy so I don't have an environment still using duplicati
Just go to the serverip:8200 after you have started duplicati-server. There you will configure what's needed.
If duplicati-server refuses to open look at the firewall port 8200.
# To open port 8200
iptables -I INPUT 1 -p tcp --dport 8200 -j ACCEPT
service iptables save
iptables -S
service iptables restart
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello. I've executed your script on Centos 6. How can I now open the Duplicati GUI? I'm unable to do the settings. Thanks