- Knowledge Base
- Installation and System Setup
- Installation
-
Roadmap
-
Knowledgebase Documents
-
Installation and System Setup
-
Setup Data Catalog
-
Connectors
-
Data Discovery
-
Self Service
-
Access Management
-
Data Quality
-
Data Literacy
-
Privacy Compliance
-
Reporting
-
Architecture, Security & Releases
-
Developer's Zone
-
Advanced Tools
-
Record of Processing Activities (ROPA)
-
Others
-
Release6.0 User Guide
-
Release6.1 Features
-
Data Catalog
-
News
-
Deactivated_Old
-
Release6.3 Deep Dive Articles
OvalEdge Database Backup Process
This article outlines the OvalEdge Database database backup process and provides step-by-step instructions for establishing connections and performing database backups.
Installation of OE Database
- Local Installation: Choose the option for local installation of the OvalEdge Database.
- Host Installation (e.g., AWS, Azure): If installed on a host server, obtain the IP address to connect to the database.
Establishing the Connection in Windows Machine
- Connect through MySQL Command-Line: Open Command Prompt and navigate to the MySQL bin folder.
mysql -u <username> -p ovaledgedb - Using Host IP: If OvalEdgeDB is installed on a remote server, use the following command:
mysql -h <HostName/HostIP> -u ovaledge -p ovaledgedb
Establishing the Connection in Linux Machine
- Ensure MySQL Server is installed on the Linux machine.
- Connect to MySQL: Run the command
mysql -u <username> -p ovaledgedb - Connect to Remote Server: If OvalEdgeDB is installed on a remote server, use the command:
mysql -h <HostName/HostIP> -u ovaledge -p ovaledgedb
Database Backup Commands
- Local Backup: Execute the command:
mysqldump -u <username> -p <databasename> > Folder_path\filename.sql
Example: mysqldump -u root -p ovaledgedb > D:\ovaledgebkp_210222.sql
Note: Username must be Root user.
- Remote Backup: Execute the command:
mysqldump -h <hostname> -u <username> -p <databasename> > folderpath\filename.sql
Copyright © 2024, OvalEdge LLC, Peachtree Corners, GA USA