Scheduled data backup from client to server

Can anyone point out what technologies would be best suited for an application that backs up data from clients to a server?

The client should choose folders to backup and schedule backups to a server

I would also be interested in how would you start developing/designing, how would you build in the shortest time possible a rudimentary version of the application.


Asked by: Alford409 | Posted: 23-01-2022






Answer 1

Quick and dirty way on windows?

Shared folders / Robocopy / Scheduled tasks (or triggered by your app, for that matter)

Nicest way?

Cobian backup with an FTP server

Are you sure you want to develop your own stuff? Is it compulsory to lie within your app?

Answered by: Sophia190 | Posted: 24-02-2022



Answer 2

If I wanted to make a single backup I would use a free backuptool, use Google to find one suitable for your needs

Answered by: Sawyer995 | Posted: 24-02-2022



Answer 3

There are many backup apps from something as simple as xcopy to Symantec. I agree with Vinzz is there really a reason to develop your own?

Answered by: Kristian892 | Posted: 24-02-2022



Answer 4

I just need to develop this kind o application.

Answered by: Arnold772 | Posted: 24-02-2022



Similar questions

java - Swing: Passing a value back to the UI from a scheduled thread

I have a system tray UI in Java that requires a schedule database poll. What is the best method for spawning a new thread and notifying the UI? I'm new to Swing and it's threading model.


scheduled tasks - I need to sleep for long periods (days) in Java

I have an app that needs to do one thing, and one thing only, on a schedule and it will be able to calculate easily the time it next needs to run. It may not need to run this task for days or months from now, but will probably be active in every other respect every few milliseconds. I'm looking for a simple lightweight approach to scheduling that one task to run.


Java Scheduled Executor: Does it guarantee to not run in parallel if task hast not yet finished

does anyone know if the following java Method in the java.util.concurrent Package ScheduledExecutorService.html#scheduleAtFixedRate() absolutely guarantees, that the Runnable scheduled will never run in parallel in case the runnable from the "last" run did not yet finish: For example (Pseudocode) 1.00 o'clock: scheduleAtFixedRate(MyRunnable, "Run ever Hour")` //1.30 o'clock: MyR...


java - Oracle scheduled tasks?

I'm drawing a design for a system to do daily business functions for my company. It will consist of a Oracle 10g database with Pl/SQL packages and a Java-based web application. All of this is running on a Solaris 10 server. Aside from handling transactions from the web interface, scheduled tasks need to run on the database to run calculations and load data etc. This is a redesign of a legacy system that currentl...


Make Java Run as Scheduled Task in XP - Problem in reading env user variable

I try to run a java application through scheduled task in XP : at 11:00 /every:m,t,w,th,f,s,su cmd /c "C:\Projects\piko\dist\piko.jar" arg I realize in piko.jar, it always read empty for System.getProperty("user.home") If I run it as normal application through command prompt, java -jar C:\Projects\piko\dist\piko.jar arg The environment vari...


java - How do I configure encodings (UTF-8) for code executed by Quartz scheduled Jobs in Spring framework webapps?

I wonder how to configure Quartz scheduled job threads to reflect proper encoding. Code which otherwise executes fine within Springframework injection loaded webapps (java) will get encoding issues when run in threads scheduled by quartz. Is there anyone who can help me out? All source is compiled using maven2 with source and file encodings configured as UTF-8. In the quartz threads any string will have enc...


java - Quartz how to schedule an online action as a scheduled job?

I developed a web application and one of the function is to send emails. I like to have the behaviour whereby the actual sending of emails is done in a batch job. Meaning when user click on the trigger button in online screen. The job for sending emails will be scheduled to run instead of immediately run. How to do that exaclty? Any sample code references etc?


Would a scheduled Java app run when Windows is in sleep mode?

If I start a Java app, it initiates and does some work then goes to thread sleep for an hour, then wake up after an hour and does some more work ... But my PC is running Win7 and after 15 minutes of inactivity, it will go into sleep mode, so my question is : an hour from I started the Java app, if I don't touch the PC, and it goes into sleep mode, will my Java app still be able to wake up and do its work, and if so...


java - How to cancel a scheduled Quartz job in Spring

I'm using Spring to inject a Quartz scheduler (abstracted with Spring's TaskScheduler interface) into my app that loads jobs configured from a database at startup. It adds each job in the scheduler something like this: TaskScheduler taskScheduler = ...;//injected Runnable runableThing = ...; String cronExpression = ...; //from DB taskScheduler.schedule(runableThing, new CronTrigger(cronExpressi...


Running a scheduled task written in java on a linux server

I need to run a piece of java code on a linux server everyday at a specific time. For now I am testing it on a Ubuntu desktop by running it from the terminal and its functioning properly and as required. For scheduling, I have used the library from here. On the actual server, what would be the correct way to run thi...






Still can't find your answer? Check out these amazing Java communities for help...



Java Reddit Community | Java Help Reddit Community | Dev.to Java Community | Java Discord | Java Programmers (Facebook) | Java developers (Facebook)



top