Title: Procedure for MySQL Database Installation ( 5.7.xx – Enterprise) and setup for SSL on RHEL
Purpose of the Document
Procedure for MySQL Database Installation ( 5.7.xx – Enterprise) and setup for SSL on RHEL
Procedure
=====================================================================
MySQL Database Installation –RHEL 7.x – DB Version 5.7.x – Enterprise Edition
=====================================================================
The below procedure is related to MySQL Database Installation Version 5.7.x on RHEL 7.x. ( Enterprise Edition)
(1) Check the OS version of RHEL by using below command.
[root@DB_Server ~]# cat /etc/redhat-release
(2) Create local group for dba
groupadd -g 1020 dba
(3) Create local user for mysql
useradd -g dba -u 888 -d /export/home/mysql -m mysql or useradd -g dba -u 888 -d /data/mysql …
[Read more]