Posts

Showing posts from August, 2024
Image
  Three tier architecture   Sudo su -                                            --> going to the root user for mysql installation. dnf install mysql-server -y       --> here 'dnf' is the package manager 'mysql-server' is package. 'y'                                                                            means we are saying yes to install. systemctl enable mysqld          --> here 'd' means daemon, we call it daemon because they run                                    ...