A Service of Softnik Technologies

Watch My Domains SED
Product Home User Guide

Installation

Configuration

Usage


Developer APIs

These API endpoints are specifically for developers who want to integrate their own apps or websites with data from Watch My Domains SED. They’re completely separate from the registrar API support built into the app.

So if you're a regular user or administrator of the software, you can safely ignore these, they’re not meant for day-to-day use or configuration.

Administrative Endpoints

Standard Endpoints

How to backup MySQL database

Use mysqldump in a Cron Job

You can use a simple cron job to regularly backup the MySQL database used by Watch My Domains SED. Here is a simple bash script to backup the database to a date stamped file in /home/wmdsed/backup/ folder.

mysqldump -u xxxxxx -pyyyyyy --skip-lock-tables database_name > /home/wmdsed/backup/wmdsed_`date +%Y%m%d`.sql

Replace the xxxxxx with your database user name, yyyyyy with the database password and database_name with your database name. Remember to set the backup path also.