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.
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
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
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]));
}