Backup/Restore tools for clients using WAP

What database and file backup tools are people using to give clients access to make their own databases and websites?
The same question goes for giving them the ability restore databases to the servers?
Simon Holman
Expeed Technology
Australian Web Hosting

I ended up utilising MyLittleBackup and it will run external to WAP for now.
Simon Holman
Expeed Technology
Australian Web Hosting

Similar Messages

  • Monitoring and backup/restore tools for TT databases

    Hi there,
    I am new to TimesTen. I need to set up automatic monitoring for TT databases. Are there any tools available? Also would like to know if there are any tools for tracking backups for these datastores.
    Any standards & best practices for managing TimesTen environment available?
    Appreciate any help/advise.
    Regards

    Hi Vidya,
    You did not mention what type of Unix/Linux you are using or what version of TimesTen. I will assume it is a mainstream Unix (Solaris, HP/UX or similar) or Linux (RedHat, SuSE etc.) and a recent (6.0 or 7.0) version of TimesTen. I will also assume that you want to put everything back 'as is' after the rebuild (i.e. you are not upgrading TimesTen versions or changing anything else about the configuration). IF YOU ARE PLANNING TO UPGRADE TIMESTEN AS PART OF THE REBUILD THEN THE STEPS LISTED BELOW WILL NOT WORK 'AS IS' AND WILL NEED MODIFICATION.
    Assuming that the machine is going to be 'wiped' during the rebuild then the main things you need to preserve are:
    1. Kernel parameter and other system level configuratiopn for TimesTen and indeed any other software running on the box. You would do this by taking copies of the relevant system configuration files and re-applying the customisations after the rebuild. As well as kernel parameters this might include things like users and groups.
    2. The port numbers used by each installed TimesTen instance. You can find these out from the ttVersion and ttStatus commands in each instance. Make a note of these as you will need them afterwards for re-installation.
    3. TimesTen configuration files for each installed TimesTen instance. You may have multiple TimesTen instances of the same or different versions installed. You can find out by looking at
    the file /etc/TimesTen/instance_info which contains details of every TimesTen installation (instance) on the machine. The instance configuration files are found in <install_dir>/info and are called; ttendaemon.options, sys.odbc.ini, sys.ttconnect.ini, snmp.ini and ttpasswd. You should make safe copies of all these files for each instance.
    4. Any user configuration files that e.g. configure TimesTen environment variables and any user ODBC configuration files such as .odbc.ini in user's home directory.
    5. Any datastores (databases) that you need to preserve across the rebuild. For each of these, take a backup of the datastore using the TimesTen ttBackup command and preserve the output files/directories. You need to do this separately for each datastore in each TimesTen instance.
    After you have secured the above then you should be okay to do the rebuild. After the rebuild you should:
    a) Re-apply all system level config changes (kernel parameters, users, groups etc.) preserved from (see step 1 above).
    b) Re-install all required TimesTen instances into the same installation directories, and using the same port numbers, as they had previous to the rebuild (see step 2 above). The installations should be performed as the same user as the original installatuions (the ttVersion output from step 2 above would tell you that). Prior to performing the installation you would need a sysadmin to create the /etc/TimesTen directory and assign suitable permissiosn to it (see TimesTen installation Guide for more details).
    c) Re-instate the saved TimesTen configuration files for each instance (see step 3 above).
    d) Re-instate any user level configuration files (see step 4 above).
    e) Re-create any datastore directories as required ready to receive the restored datastores (check datastore and log file paths in ODBC configuration files).
    f) Restore the datastore backup directories (created in step 5 above) to somewhere on disk.
    g) Use ttRestore in each instance to restore each datastore from the backup files restored in step (f) above. This re-creates all your datastores with all their data etc.
    If you follow this procedure and are not doing anything like changing TimesTen major versions (e.g. 6.0 -> 7.0) as part of the rebuild then you should not need to relink any application binaries. If for some reason you want to relink any application binaries you should consult the application developers who should have suitable makefiles to do this.
    I think this is pretty complete but of course it is possible there are additional things specific to your installation or operational regime of which I am unaware and so of course we can not accept any responsibility for any errors or omissions...
    I will send you the document on monitoring TimesTen via your e-mail address.
    Chris

  • Backpac: A package state snapshot and restore tool for Arch Linux

    backpac:
    A package state snapshot and restore tool for Arch Linux with config file save/restore support.
    https://aur.archlinux.org/packages.php?ID=52957
    https://github.com/altercation/backpac (see readme on the github repository for more information)
    Summary & Features
    It's a common method of setting up a single system: take some notes about what packages you've installed, what files you've modified.
    Backpac creates those notes for you and helps back up important configuration files. Specifically, backpac does the following:
    maintains a list of installed groups (based on 80% of group packages being installed)
    maintains a list of packages (including official and aur packages, listed separately)
    maintains a list of files (manually created)
    backs up key config files as detailed in the files list you create
    The package, group and files lists along with the snapshot config files allows system state to be easily committed to version control such as git.
    Backpac can also use these lists to install packages and files. Essentially, then, backpac takes a snapshot of your system and can recreate that state from the files and lists it archives.
    Use Cases
    Ongoing system state backup to github
    Quick install of new system from existing backpac config
    Conform current system to given state in backpac config
    Backpac is a very, very lightweight way of saving and restoring system state.
    It's not intended for rolling out and maintaining multiple similar systems, it's designed to assist individual users in the maintainance of their own Arch Linux box.
    Status
    Alpha, release for testing among those interested. Passing all tests right now but will continue to rework and refine. Bug reports needed.
    Why?
    There are a lot of 'big-iron' solutions to maintaining, backing up and restoring system state. Setting these up for a single system or a handful of personal systems has always seemed like overkill.
    There are also some existing pacman list making utilities around, but most of them seem to list either all packages or don't separate the official and aur packages the way I wanted. Some detect group install state, some don't. I wanted all these features in backpac.
    Finally, whatever tool I use, I'd like it to be simple (c.f. the Arch Way). Lists that are produced should be human readable, human maintainable and not different from what I'm using in non-automated form. Backpac fulfills these requirements.
    Regarding files, I wanted to be able to backup arbitrary system files to a git repository. Tools like etckeeper are interesting but non /etc files in that case aren't backed up (without some link trickery) and there isn't any automatic integration with pacman, so there is no current advantage to using a tool like that. I also like making an explicit list of files to snapshot.
    Sample Output
    This is the command line report. Additionally, backpac saves this information to the backpac groups, packages and files lists and the files snapshot directory.
    $ backpac -Qf
    backpac
    (-b) Backups ON; Files will be saved in place with backup suffix.
    -f Force mode ON; No prompts presented (CAUTION).
    (-F) Full Force mode OFF; Prompt displayed before script runs.
    (-g) Suppress group check OFF; Groups will be checked for currency.
    (-h) Display option and usage summary.
    (-p) Default backpac: /home/es/.config/backpac/tau.
    -Q Simple Query ON; Report shown; no changes made to system.
    (-R) Auto-Remove OFF; Remove/Uninstall action default to NO.
    (-S) System update OFF; No system files will be updated.
    (-U) backpac config update OFF; backpac files will not be updated.
    Sourcing from backpac config directory: /home/es/.config/backpac/tau
    Initializing.................Done
    GROUPS
    ============================================================================
    /home/es/.config/backpac/tau/groups
    GROUPS UP TO DATE: group listed in backpac and >80% local install:
    base base-devel xfce4 xorg xorg-apps xorg-drivers xorg-fonts
    GROUP PACKAGES; MISSING?: group member packages not installed:
    (base: nano)
    (xfce4: thunar xfdesktop)
    PACKAGES
    ============================================================================
    /home/es/.config/backpac/tau/packages
    PACKAGES UP TO DATE: packages listed in backpac also installed on system:
    acpi acpid acpitool aif alsa-utils augeas cowsay cpufrequtils curl dialog
    firefox gamin git ifplugd iw mesa mesa-demos mutt netcfg openssh rfkill
    rsync rxvt-unicode sudo terminus-font vim wpa_actiond wpa_supplicant_gui
    xmobar xorg-server-utils xorg-twm xorg-utils xorg-xclock xorg-xinit xterm
    yacpi yajl youtube-dl zsh
    AUR UP TO DATE: aur packages listed in backpac also installed on system:
    flashplugin-beta freetype2-git-infinality git-annex haskell-json
    package-query-git packer wpa_auto xmonad-contrib-darcs xmonad-darcs
    AUR NOT IN backpac: installed aur packages not listed in backpac config:
    yaourt-git
    FILES
    ============================================================================
    /home/es/.config/backpac/tau/files
    MATCHES ON SYSTEM/CONFIG:
    /boot/grub/menu.lst
    /etc/acpi/handler.sh
    /etc/rc.conf
    /etc/rc.local

    firecat53 wrote:I think your plan for handling an AUR_HELPER is good. If AUR_HELPER is defined by the user, then either you might need a list of major AUR helpers and their command line switches so you can pick the correct switch for what needs to be done (most use some variation of -S for installing, but not all), or have the user define the correct switch(es) somehow for their chosen AUR helper.
    That's a good idea. I'll add that to my AUR refactoring todo.
    I also found directory tracking to be a weakness in other dotfile managers that I tried. I think you would definitely have to recursively list out the contents of a tracked directory and deal with each file individually. Wildcard support would be nice...I just haven't personally found a use case for it yet.
    I've been thinking that I could just add the directory and scan through it for any non-default attribute files. If those are found then they get automatically added to the files list. That's pretty close to what etckeeper does.
    Edit: I just compiled the dev version and removed my comments for already fixed things...sorry!
    The master branch should have those fixes as well, but I didn't update the version number in the package build. I'll have to do that.
    1. Still apparently didn't handle the escaped space for this item: (the file does exist on my system)
    Ok, good to know. This wildcard directory business will require some new code and refactoring so I'll also rework my filenames handling.
    2. Suggestion: you should make that awesome README into a man page!
    I was working on one (the pkgbuild has a commented out line for the man page) but I had to leave it for later. Definitely want a man page. Once this stabilizes and I'm sure there aren't any big structural changes, I'll convert it to man format.
    3. Suggestion: add the word 'dotfile' into your description somewhere on this page, the github page, and in the package description so people looking for dotfile managers will find it. You could also consider modularizing the script into a dotfile manager and the package manager, so people on other distros could take advantage of your dotfile management scheme.
    I actually have a different script for dotfile management that doesn't touch packages, but there is definitely overlap with this one. That script isn't released yet, though, and if people find this useful for dotfile management that's great. I'll add that in.
    4. Suggestion: since -Q is a read-only operation, why not just make it run with -f automatically to avoid the prompt?
    Originally, running backpac without any command line options produced the Query output. I was concerned that since it is a utility that can potentially overwrite system files, it is important to give users a clear statement prior to execution about what will be done. Since the Query output is essentially the same as the Update and System reports in format and content, I wanted to be explicit about the Query being a passive no-change operation. The current command line options aren't set in stone though. If you feel strongly about it being different, let me know.
    Long answer to a short question
    5. Another suggestion: any thought to providing some sort of 'scrub' function to remove private information from the stored files if desired? This would be cool for publishing public dotfiles to github. Perhaps a credentials file (I did this with python for my own configs). Probably detecting email addresses and passwords without a scrub file would be rather difficult because dotfiles come in so many flavors.
    Yes, absolutely. In fact, if you look at the lib/local file (pretty sure it's in both master and dev branches in this state) you'll see some references to a sanitize function. The idea there is that the user will list out bash associative arrays like this:
    SANITIZE_WPA_=(
    [FILE]='/etc/wpa_supplicant.conf'
    [CMD]='sed s/expungepattern/sanitizedoutput/g'
    Question: am I missing an obvious option to remove a file from the files.d directory if I delete it from the files list? Or do I have to delete it manually? It might be helpful to add a section to the README on how to update and delete dotfiles from being tracked, and also a more detailed description of what the -b option does (and what is actually created when it's not used).
    You are only missing the function I didn't finish. There should be either dummy code or a TODO in the backpac main script referencing garbage collection, which isn't difficult but I just haven't finished it. The idea being another loop of "hey I found these old files in your files.d, mind if I delete them?" It's on my list and I'll try to get it in asap.
    And finally, just out of curiosity, why did you choose to actually copy the files instead of symlink like so many other dotfile managers do?
    git not following symlinks, hardlinks also out for permissions issues (git wouldn't be able to read the files, change them, etc.)
    I definitely would prefer to not make an entire copy of the file, but I haven't come up with a better option. Shout with ideas, though. Also, if there is a way around the link issues I noted above, let me know. I don't see one but that doesn't mean it's not there.
    edit: I think a Seattle area Arch meetup would be cool! Perhaps coffee someplace? Bellevue? U-district? Anyone else? BYOPOL (bring your own pimped out laptop)
    A general meetup sounds good. I was also thinking it would be fun to do a mini archcon with some demos.

  • Trying to activate serial number after entering redemption code and continues to say invalid serial number. Installing on Server 2012 R2 for client using RDS. HELP.....

    trying to activate serial number after entering redemption code and continues to say invalid serial number. Installing on Server 2012 R2 for client using RDS. HELP.....

    Thank you guys for the quick answer! Muche appreciated
    I've tried all suggested solutions, but no luck :-(
    - tried http://support.microsoft.com/kb/2765260 > no help and by the way the hotfix provided is not applicable for 2012 R2.
    also tried "C:\Windows\Microsoft.NET\Framework64\v4.0.30319\aspnet_regii -enable -i" and got this :
    Microsoft (R) ASP.NET RegIIS version 4.0.30319.33440Administration utility to install and uninstall ASP.NET on the local machine.Copyright (C) Microsoft Corporation.  All rights reserved.Start installing ASP.NET (4.0.30319.33440).This option is not supported on this version of the operating system.  Administrators should instead install/uninstall ASP.NET 4.5 with IIS8 using the "Turn Windows Features On/Off" dialog,  the Server Manager management tool, or the dism.exe command line tool.  For more details please see http://go.microsoft.com/fwlink/?LinkID=216771.Finished installing ASP.NET (4.0.30319.33440).
    http://social.technet.microsoft.com/wiki/contents/articles/14582.sharepoint-2013-install-prerequisites-offline-or-manually-on-windows-server-2012-a-comprehensive-guide.aspx
    > is not for 2012 R2.
    For the automated install script (http://gallery.technet.microsoft.com/office/DownloadInstall-SharePoint-e6df9eb8) Craig mentions that the script are not yet compatible
    "SharePoint 2013 SP1 and Windows Server 2012 R2 support coming soon
     I will be updating this script with support for SharePoint 2013 Service Pack 1 installations along with support for Windows Server 2012 R2 in the near future. Thank you to everyone for the interest in my scripts - it is much appreciated! "

  • Can I create a fillable pdf form and then export it for client use on my web site?

    Can I create a fillable pdf form and then export it for client use on my web site?  I need clients to be able to fill in the (registration) form on my site then submit it via email.

    [discussion moved to Creating, Editing & Exporting PDFs forum]

  • Upload captivate file to my website for client use?

    If i upload the interactive captivate file to my website for clients to train their employees, would my client be able to:
    1. click to advance each slide
    2. take the quiz that include referring back to a slide when the answer is wrong
    3. print a certificate of completion.
    Is the possible?

    Shekhar,
    Unless the user's web server is a SCORM or AICC compliant LMS there's no point telling them to set this reporting option.  You can have a web server WITHOUT it being an LMS.  I don't see anywhere in the original poster's text that they state they were using an LMS.
    For a web server to be compatible with Captivate outputs the only requirements are that it can serve HTML, SWF, and JS files, not necessarily that it must be SCORM content.

  • Where do I download the firefox insight tool for SEO use

    I attended an eCommerce course yesterday and the presenter showed us an application/tool which he called firefox insight which is used in website SEO and PPC. I have found google insights but cannot find the Firefox one he demod to us. Can any one help me?

    Hi,
    I don't know what tool he was using, but it could be a Firefox add-on. You can browse the add-ons and try to find the tool you were introduced to: In the add-ons manager you will find a search box in the upper right corner.
    If you need any more information about the Firefox extensions you can check this: [[Using extensions with Firefox]]

  • Tar-backup: gui tool for backups using tar

    Hi everybody.
    I made little application to simplify process of creating backups. It use tar, openssl (for encrypting archives). Written in QT4
    Links:
    github
    AUR
    PKGBUILD
    Screenshots:
    Main window
    Restore tab
    Output tab
    Backup settings
    Tell me what you think. Any feedback is welcome. Thanks.
    Last edited by marazmista (2013-07-31 22:45:13)

    Wow the GUI looks great.
    Sadly, it's of no use to me as I personally am satisfied with rsync. But, I am sure others will find it useful.
    Edit: By the way, you should put qt qt4 (whichever version you are using (I am blind )), in the PKGBUILD depends array.
    Last edited by x33a (2013-07-18 05:47:55)

  • Incorrect Default Gateway for Clients using a Concentrator

    Hey all,
    Hopfully an easy one - I'm trying to configure a VPN Concentrator for use with the old VPN Client for an IPSec CVPN.
    The clients connect fine, but they are getting the incorrect default gateway during the address assignment.
    My address pool is 192.168.0.128/25.  The client correctly picks up the first address in the range, 192.168.0.129, but the default gateway for the VPN adapter is assigned as the next address in the range, 192.168.0.130.
    I need the gateway address to be 192.168.0.254 (the SVI of the L3 switch connected to the Concentrator), but I can't for the life of me fine a configuration option anywhere in the pool assignment.  I've set the tunnel default gateway to this 192.168.0.254, but this makes no difference.
    Any ideas where I can find this config option?
    Thanks!

    Andrew
    In the chart that you posted about the routing setup it refers to a DMZ network and DMZ gateway. Can you clarify what these are since I do not see them in the drawing that is in that post?
    I agree with Herbert that it is cleaner to have the address pool on the concentrator use addresses that do not overlap with the concentrator subnet connecting to the layer 3 switch. And as long as the layer 3 switch has a route to that address pool, and the next hop in the route is the address of the concentrator interface then the separate pool addressing should work just fine.
    I have re-read this thread and want to make sure that after some changes that you have made that the problem symptoms are still the same. You told us earlier that: "Now the client can ping the interfaces on its local LAN (concentrator  interface 192.168.0.253, and the L3 switch, 192.168.0.253), but it  cannot reach the rest of our internal LAN behind the layer 3 switch." Is this still an accurate statement of the problem?
    As Herbert said earlier this could either be caused by the concentrator not have a correct route for the inside or it could be  because the inside does not have a correct route to the client. In re-reading your description of the routing set up it looks like the concentrator has a default route configured but not the tunnel default route. May I suggest that you try configuring a tunnel default route (in addition to the normal default route) and see whether that makes any difference?
    If that does not help the problem then I would suggest that you verify that the devices on the inside do have their default gateway set correctly and that the layer 3 switch does have a route for the VPN address pool with the concentrator interface address as the next hop.
    HTH
    Rick
    [edit] I just focused on the question that you asked about the concentrator possibly needing a route for the address pool. The concentrator does not need any route statements for the address pool - it knows its own address pool, pretty much like having a connected interface subnet. The layer 3 switch is what needs a route for the address pool.

  • White label In-browser editing tool for client facing "CMS" functionality.

    Muse should offer white-labeling functionality for designers who are using the tool.

    Please see (and participate) in Adobe branding on Muse's in-browser editing page and/orWhy do the words 'Adobe Muse' appear on the InBrowserEditing site? Can I White Label? Thanks.

  • Reset/restore iMac for kids' use

    I am giving my 2007 iMac to the kids and want to wipe out all of my docs, photos, music so it is free for their own stuff (homework, photos, etc).
    I'm running Lion and it seems that if I reset to factory settings I will have to reinstall with the discs that came with the machine which was Leopard (or maybe Snow, don't remember).
    If I do that, how do I get Lion back?
    Do I even need to go to that level of wiping out since it is staying here (ie., not selling it to someone else)?
    If not, how do I just get rid of my data but keep Lion and all the apps?
    Thanks.

    The Apple Support Communities are an international user to user technical support forum. As a man from Mexico, Spanish is my native tongue. I do not speak English very well, however, I do write in English with the aid of the Mac OS X spelling and grammar checks. I also live in a culture perhaps very very different from your own. When offering advice in the ASC, my comments are not meant to be anything more than helpful and certainly not to be taken as insults.
    Following the directions for OS X Restore, you should be able to erase the internal HDD, reinstall Lion and then configure the iMac for your kids.
    http://support.apple.com/kb/HT4718

  • Is there a way to have a seperate login within the webpage for clients use?

    I have keep getting requests for having a login for doctors or for information needed for just employees. Is there a way to do that within Muse?
    Please help me out,
    thanks
    kent

    Actual version of Muse does not allow you to do this. You need to costumize your code to achive the feature you need. Also if you want to have different user names/passwords ad different content outputs, you will need a CMS (content management system) behind your site.

  • Profiling tool for applets using Microsoft JVM?

    Hello All,
    I have an applet designed to work in Microsoft JVM. It is slow and sometimes crashes the browser and I doubted that it caused memory leak. Therefore, I wish to have a profiling tool which can collect time and memory consumption from Microsoft JVM.
    Please advice.

    simply: there is none.
    Its even impossible to denug it withought a legal copy of J++, trust me MSJVM really sucks.
    I have to create a really big applet which is compatible to Netscape-4.7 and MSJVM-3167+ and its nightmare. One change and the whole cardhouse breaks.
    I do not want to make you feel sad, but leave it.
    lg Clemens
    PS: I would try to create as few objects a s possible, the ms-gc is not very powerful nore stable...

  • Backup/Restore in IMS5.2

    Hello,
    We are looking for a complete Backup/Restore System for VIP employees in my company (IMS5.2 with Win2k). That is, we would like to be able see and restore any email (one-by-one) from an employee backup to his mailbox. I don't know if there is any tool which can catalogue all the backups to restore an especific email.
    Would it be possible?
    Which would be the nearest planning that we can do with imsbackup/imsrestore?
    I have not seen how can make a restore just for one email using imsrestore.
    Thanks for all.

    No such backup tool exists. imsbackup/imsrestore has granularity down to the user, but not to the message.
    You can restore to a different folder, say, "inbox-09-02-04", and then use any imap/webmail client you like to identify what mails to move back into the old folders, though. That's enough for most.
    I don't know of any way to gather a catalog of each message that's backed up, and access that in any useful way. I don't believe any large-scale mail server offers such. Imagine how large such a file/database would have to be, to be able to list thousands of messages for each of many hundreds of thousands of users. . .

  • Oracle 11GR1, Backup / Restore etc.

    Hi together
    I'm looking for a DotNet API to control status messages, exception handling and so on in Oracle 11GR1.
    Thanks for your Help

    Rman is part of the database, and is the backup/restore tool. There is no other way then to use rman (in a normal deployment), except a cold backup (file copy).

Maybe you are looking for

  • Cisco Jabber Softphone not working

    Hi The softphone is not working for cisco jabber windows Attached is the logs CUCM AND CUPS version 9.x I found the below but is not clear to me what is the issue 2013-10-10 12:53:42,577 DEBUG [0x00001360] [tionplugin\StatusBarPhoneButton.cpp(127)] [

  • Discount in A/R Invoice

    Dear Experts, In the A/R Invoice the price for a certain item is coming automatically vide the price list attached to the Business Partner. My requirement is that I need to trigger an approval procedure when a discount is given to this price. Present

  • Modify and add Profit Centre in S_ALR_87012078

    Hi, I have a requirement to modify S_ALR_87012078. Can someone tell me the way to copy this program and add the field on it...because when i see from the transaction code this program are using START_REPORT. Thanks.

  • Create table using a dynamic SQL returns error.

    DBMS_UTILITY.exec_ddl_statement ( 'create table test_table as select column_names from table_name@dblink where condition' ) i am using the above statement in a pl/sql procedure. It throws an error saying "Exact fetch returns more than requested no. o

  • How to bring Windows 7 snap window to OS X to work with two apps/ docs side

    I quite like the feature that windows 7 has to allow working with documents or applications side by side filling the screen. I know that i can resize each window but it seems a little fiddly and i'm thinking there must be a way to have it automated.