UrbanPro
Loading

Verifying payment...

tickYou have successfully registered

MySQL DBA course by Ravinder Boinpally

LIVE

Sat, 18 Apr

Class
starts in

00

Days

01

Hour

01

Min

01

Sec

This is a Paid Masterclass

Amount Payable: ₹99

Pay ₹99 & Register No, not right now

Do you want to Register for this Free class?

Yes, Register No, not right now

Tell us a little more about yourself

Loading

Verifying payment...

MySQL DBA course by Ravinder Boinpally

ProfilePhoto
LIVE

Sat, 18 Apr

Class
starts in

00

Days

01

Hour

01

Min

01

Sec

Please enter Student name

Please enter your email address.

Please enter phone number.

tickYou have successfully registered

MySQL DBA course by Ravinder Boinpally

LIVE

Sat, 18 Apr

Class
starts in

00

Days

01

Hour

01

Min

01

Sec

Tell us a little more about yourself

true

MySQL DBA course

LIVE
45 Hours

Register Now

- OR -

Course offered by Ravinder Boinpally

84 reviews

MySQL Database Administration (DBA)

Course Description

This course is designed to provide a comprehensive understanding of MySQL database administration. It covers fundamental concepts, advanced topics, and practical skills required to manage, optimize, and maintain MySQL databases in production environments. The course is suitable for beginners as well as experienced professionals aiming to strengthen their MySQL DBA expertise.

Course Objectives

  • Understand MySQL architecture and internal components
  • Install and configure MySQL on Linux systems
  • Manage databases, users, and security
  • Perform backup and recovery (logical & physical)
  • Implement replication and high availability
  • Optimize database performance and troubleshoot issues
  • Configure monitoring and automation tools

Who Should Attend

  • Database Administrators (DBAs)
  • Developers working with MySQL
  • System administrators managing databases
  • IT professionals interested in database management

Prerequisites

  • Basic knowledge of databases
  • Familiarity with SQL
  • Basic Linux command-line knowledge

 Course Content (23 Modules)

Module 1: MySQL Architecture

  • MySQL architecture overview
  • Client-server model
  • Thread architecture
  • Memory components
  • Query processing flow

Module 2: MySQL Installation

  • Installation on AlmaLinux / Linux
  • Directory structure
  • Service management
  • Upgrade methods and tools

 

Module 3: MySQL Filesystem & Directory Layout:

  • MySQL base directories in Linux
  • /var/lib/mysql/ (data directory)
  • /etc/my.cnf (configuration file)
  • /etc/mysql/conf.d/ (additional configs)
  • /var/log/mysql/ (log files)
  • /usr/sbin/mysqld (server binary)
  • /usr/share/mysql/ (support files)
  • /run/mysqld/ (PID & socket files)
  • Data directory structure (datadir)
  • Stores databases, system tables, logs, metadata
  • InnoDB system files
  • ibdata1 (system tablespace, metadata, doublewrite buffer)
  • ib_logfile0, ib_logfile1 (redo logs for crash recovery)
  • undo_001, undo_002 (undo tablespaces for MVCC & rollback)
  • Global metadata files
  • auto.cnf (server UUID for replication)
  • SSL files (server-cert.pem, server-key.pem)
  • Database-level storage
  • Each database stored as a directory
  • db.opt (charset & collation settings)
  • .ibd (InnoDB table data & indexes)
  • .frm (table structure in MySQL ≤ 5.7)
  • MyISAM storage files
  • .MYD (data file)
  • .MYI (index file)
  • Temporary files
  • /tmp/#sql_* (temporary query operations)
  • ibtmp1 (InnoDB temporary tablespace)
  • Log files
  • Error log (startup, shutdown, crashes)
  • General log (all queries)
  • Slow query log (long-running queries)
  • Binary logs (mysql-bin.*) for replication & PITR
  • Relay logs (relay-log.*) for replicas
  • Runtime files
  • mysqld.pid (process ID)
  • mysqld.sock (Unix socket for local connections)
  • Plugin directory
  • /usr/lib64/mysql/plugin/ (authentication, storage, security plugins)
  • Support and script files
  • /usr/share/mysql/ (timezone, help tables, scripts, charsets)
  • mysql system database
  • Stores users, privileges, metadata, and replication info
  • Key tables: user, db, tables_priv, columns_priv, procs_priv
  • InnoDB stats tables and replication tables

 

Module 4: Storage Engines

  • InnoDB
  • MyISAM
  • MEMORY
  • CSV
  • ARCHIVE
  • FEDERATED
  • InnoDB vs MyISAM
  • Innodb storage engine architecture
  • Use cases and limitations

Module 5: InnoDB Architecture

  • Buffer Pool
  • Redo Logs
  • Undo Logs
  • Tablespaces
  • Doublewrite buffer

Module 6: Transactions & Isolation

  • ACID properties
  • Isolation levels
  • Transaction handling
  • Consistency models

Module 7: InnoDB Locking

  • Row-level locking
  • Gap locks
  • Next-key locks
  • Deadlock detection and resolution

Module 8: User Management & Security

  • User creation and management
  • Authentication plugins
  • Privileges and roles
  • Security best practices

Module 9 : Database, Tablespace and Table management

  •  Database creation, selection, and management (CREATE, DROP, USE)
  • InnoDB tablespace architecture (system tablespace, file-per-table, general tablespaces)
  • Table creation with constraints (PRIMARY KEY, UNIQUE, FOREIGN KEY)
  • Table modifications and online DDL (ALTER TABLE, INPLACE/INSTANT operations)

Module 10: Logical Backup & Restore

  • mysqldump usage
  • mysqlpump overview
  • Export and import strategies
  • Backup consistency

Module 11: Physical Backup

  • Hot vs cold backup
  • File system backup
  • Introduction to XtraBackup

Module 12: Binlogs & PITR

  • Binary log configuration
  • Binlog formats
  • Point-in-Time Recovery (PITR)
  • Log maintenance

Module 13: Replication Basics

  • Replication architecture
  • Source and replica setup
  • Binary log flow

Module 14: Advanced Replication

  • Multi-source replication
  • Chain replication
  • Replication filters

Module 15: Replication Troubleshooting

  • Replication lag
  • Relay log issues
  • Error handling
  • Skip errors

Module 16: GTID Replication

  • GTID concepts
  • Advantages over traditional replication
  • Setup and management

Module 17: Backup Tools & Parallel Dumping

  • mydumper and myloader
  • mysqlpump
  • Performance comparison

Module 18: Performance Tuning

  • Buffer pool tuning
  • Redo log tuning
  • Query optimization basics

Module 19: OS-Level Tuning

  • CPU and memory tuning
  • Disk I/O optimization
  • File descriptor limits

Module 20: High Availability & Clustering

  • Innodb Replica set
  • InnoDB Cluster
  • Group Replication
  • Galera Cluster
  • Failover concepts

 

Module21 : Table Partitioning in MySQL

  • Introduction to table partitioning
  • Concept and purpose of partitioning
  • Benefits: performance, manageability, scalability
  • Types of partitioning in MySQL
  • RANGE partitioning
  • LIST partitioning
  • HASH partitioning

Module 22: Major and Minor upgrades

  • Cross version upgrades
  • Minor version upgrades

Module 23: Monitoring, Proxy & Automation

  • Monitoring with PMM
  • MySQL Orchestrator
  • Troubleshooting and automation

 

Gallery (3)

About the Trainer

Ravinder picture

4.8 Avg Rating

84 Reviews

90 Students

5 Courses

Ravinder Boinpally

MCA

4 Years of Experience

I am working as senior consultant and leading a team who handles different DB technologies. I am a certified Microsoft professional and expertise in multiple technologies which includes 13 years of SQL DBA experience, 6+ years experience in MongoDB administration and 6+ years of experience in azure cloud management. In my current role I am responsible for designing and planning cloud migration from onprem to cloud infrastructure from scratch, responsible for building cost optimizimized infrastructure in azure cloud and expertise in handling multiple clients for multiple projects.
Apart from my professional experience I spent much of my career training people on SQL server DBA, Azure cloud infrastructure and MOngoDB administration. I have trained more than 500+ students on SQL Server, Azure cloud and MongoDB administration.

Students also enrolled in these courses

LIVE
1 review
5 Hours
1,750 1-on-1 Class

Course offered by Neha Batra

6 reviews
LIVE
25 Hours
25,000 Group Class (max 1)
20,000 1-on-1 Class

Course offered by Senthilkumar

9 reviews
LIVE
2 reviews
20 Hours
12,000 Group Class (max 5)
15,000 1-on-1 Class

Course offered by Prabir Bhowmik

25 reviews
LIVE
Mon, Tue, Wed, Thu, Fri 05:00pm-06:00pm
1 Hours
2,750 Group Class (max 5)
550 1-on-1 Class

Course offered by Aditya Dubey

0 review

Tutor has not setup batch timings yet. Book a Demo to talk to the Tutor.

Different batches available for this Course

No Reviews yet!

Reply to 's review

Enter your reply*

1500/1500

Please enter your reply

Your reply should contain a minimum of 10 characters

Your reply has been successfully submitted.

Certified

The Certified badge indicates that the Tutor has received good amount of positive feedback from Students.

Different batches available for this Course

Verify Your Mobile Number

Please verify your Mobile Number to book this free class.

Update

Please enter 10 digit phone number.

Please enter your phone number.

Please Enter a valid Mobile Number

This number is already in use.

Resend

Please enter OTP.

Or, give a missed call and get your number verified

080-66-0844-42

This website uses cookies

We use cookies to improve user experience. Choose what cookies you allow us to use. You can read more about our Cookie Policy in our Privacy Policy

Accept All
Decline All

UrbanPro.com is India's largest network of most trusted tutors and institutes. Over 55 lakh students rely on UrbanPro.com, to fulfill their learning requirements across 1,000+ categories. Using UrbanPro.com, parents, and students can compare multiple Tutors and Institutes and choose the one that best suits their requirements. More than 7.5 lakh verified Tutors and Institutes are helping millions of students every day and growing their tutoring business on UrbanPro.com. Whether you are looking for a tutor to learn mathematics, a German language trainer to brush up your German language skills or an institute to upgrade your IT skills, we have got the best selection of Tutors and Training Institutes for you. Read more