Após criar cliente no portal, faça o download, execute o comandochmod +x Cloud_Backup-xxx.run
Execute o arquivo /.run
. Isto irá extrair os arquivos.
O software irá ser instalado em um subdiretório em /opt/
e irá iniciar automaticamente.
Reiniciando
O Agent do Cloud pode ser reiniciado com o comando backup-daemon-start.sh
file.
Se você estiver executando comandos por SSH, esteja ciente de que este script é executado em primeiro plano e morrerá quando a sessão SSH for fechada;
For example (double-fork):
( cd /opt/CloudBackup ; ./backup-daemon-start.sh >/dev/null 2>/dev/null & ) &
Rodar ao iniciar
O instalador inclui um script, backup-daemon-start.sh
que pode iniciar o serviço. é recomendado que configure esse script, escrevendo no init.d
script, systemd
unit, or rc.local
as entradas dependem da sua distribuição Linux.
Siga as orientações abaixo (em inglês)
Startup via rc.local
You can make Cloud Backup start at system boot by adding an entry to the rc.local
file.
First, find the rc.local
file on your system:
/etc/rc.local
(Debian/Ubuntu)/etc/rc.d/rc.local
(CentOS/RHEL)
Add the following content to the rc.local
file:
/opt/CloudBackup/backup-daemon-start.sh &
If the rc.local
file contains an exit 0
statement, the additional command should be added before such a statement.
As of CentOS 7, the rc.local
file is not executable by default. You should run chmod +x
on the rc.local
file to enable using this method for startup scripts.
Startup via cron
You can make Cloud Backup start at system boot by adding an entry to root
‘s crontab.
- Run
crontab -e -u root
to launch a crontab editor - Add the line
@reboot /opt/CloudBackup/backup-daemon-start.sh