MySQL Backup and Restore Commands for Database Administration

[ad_1] This article shows you several practical examples on how to perform various backup operations of MySQL/MariaDB databases using the mysqldump command and also we will see how to restore them with the help of mysql and mysqlimport command in Linux. mysqldump is a command-line client program, it is used to dump local or remote … Read more

8 Practical Examples of Linux “Touch” Command

[ad_1] In Linux, every single file is associated with timestamps, and every file stores the information of last access time, last modification time, and last change time. So, whenever we create a new file, and access or modify an existing file, the timestamps of that file are automatically updated. Linux Touch Command Examples In this … Read more

30 Ways to Validate Configuration Files or Scripts in Linux

[ad_1] Configuration syntax checking and/or testing is a key step to perform after making changes to an application’s or service’s configuration file or even after running updates. This helps to reduce the chances of the service failing to restart due to configuration errors. Several applications/programs or service daemons ship with commands to check configuration files … Read more

How to Install WordPress on AWS Apache 2 Ubuntu 18.04/20.04

[ad_1] Installing wordpress on amazon aws ubuntu Linux server. Through this tutorial, we will teach you how to install wordpress and configure it on amazon aws ubuntu 18.04 with lamp stack. WordPress installation and configuration on Amazon AWS ubuntu web server are very simple things. Because the Ubuntu community provides several commands to install and … Read more

CentOS – RHEL | Mount Hard Disk one or More Hard Drive

CentOS Mount Hard Disk one or More Hard Drive

Most Important Commands Mount New Drive | Quick On Commands for List -> lsblk -f hard’s detail-> blkid Selected hard detail ->> fdisk /dev/sda if need format drive -> mkfs -t ext4 /dev/sdb Make Directory(new folder on Machine)-> mkdir /www/wwwroot/data Mount Drive -> mount /dev/sda /www/wwwroot/dataif you want unmount -> umount /dev/sda /www/wwwroot/data Read Write … Read more