Skip to content

Instantly share code, notes, and snippets.

@gene1wood
Created January 8, 2018 06:14
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save gene1wood/ea8fe5c897ae34bd5d466970fc0c1b93 to your computer and use it in GitHub Desktop.
Save gene1wood/ea8fe5c897ae34bd5d466970fc0c1b93 to your computer and use it in GitHub Desktop.
How to install Duplicati on CentOS 6
# 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
@trandafile
Copy link

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

@w3servicesdotnet
Copy link

All OK but how to open GUI ??

@gene1wood
Copy link
Author

@trandafile @w3servicesdotnet I'm not sure. I've moved to using Duplicacy so I don't have an environment still using duplicati

@Iodok
Copy link

Iodok commented Nov 20, 2019

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.

@nudge-sangbeomhan
Copy link

# 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