backup bacula
 
Notifications
Clear all

backup bacula

4 Posts
2 Users
0 Likes
658 Views
Posts: 2
Topic starter
(@mdezan)
New Member
Joined: 5 years ago

Expensive,

I use the bacula for backups,

Without using the panel what would be the script for backing up the solidcp server,
so that I can start the backup directly by the bacula agent.

3 Replies
Posts: 1964
Admin
(@m-tiggelaar)
Noble Member
Joined: 8 years ago

Hello,

I am not really sure what your asking.

Do you just want a backup of the SolidCP Server files? (solidCP it self)

If so thats really not needed (as it's easy to be replaced/ pushed back)

In general i would always keep a copy of the SolidCP Enterprise web.config and database.

If your looking to backup an entire windows server that SolidCP Server is on i am not sure, that would be more or less dependent on the software your using (i am not familiar with Bacula).

Regards,

Marco

Reply
Posts: 2
Topic starter
(@mdezan)
New Member
Joined: 5 years ago

buddy i want to call the program or script that backs up solidcp directly by the bacula agent i have installed from the server.

For this I need to know where it is and what this program is, because it is perfect.

if i run by bacula agent it will be all right for me

Reply
Posts: 1964
Admin
(@m-tiggelaar)
Noble Member
Joined: 8 years ago

The only way to do that would be by use of Soap call to Enterprise Server

Soap call values:

[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/solidcp/enterpriseserver/Backup", RequestNamespace="http://smbsaas/solidcp/enterpriseserver", ResponseNamespace="http://smbsaas/solidcp/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
public int Backup(bool async, string taskId, int userId, int packageId, int serviceId, int serverId, string backupFileName, int storePackageId, string storePackageFolder, string storeServerFolder, bool deleteTempBackup) {
object[] results = this.Invoke("Backup", new object[] {
async,
taskId,
userId,
packageId,
serviceId,
serverId,
backupFileName,
storePackageId,
storePackageFolder,
storeServerFolder,
deleteTempBackup});
return ((int)(results[0]));
}

Reply
Share: