INSTALACAO ORACLE MYSQL NO ORACLE LINUX, ALMALINUX, ROCKY LINUX ou RHEL 9.x
dnf install -y dnf-utils yum-utils nano telnet traceroute net-tools unzip bzip2 tar wget dnf-plugins-core
dnf -y install https://rpms.remirepo.net/enterprise/remi-release-9.rpm
dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm
dnf -y install https://dev.mysql.com/get/mysql80-community-release-el9-5.noarch.rpm
dnf install 'dnf-command(config-manager)'
dnf -y update --refresh
reboot
mysql --version
systemctl status mysqld
systemctl enable firewalld
firewall-cmd --permanent --add-port=3306/tcp
firewall-cmd --reload
CONFIGURANDO O MYSQL
#--------------------------------------------------------------------------------------------------------------------------------#
#Se você instalou a versão MySQL 8.0 Community e encontrou um erro em relação à senha temporária.
Error: Access denied for user 'root'@'localhost' (using password: NO)
#Conforme mostrado acima, se você encontrar um cenário em que a senha raiz do MySQL já foi definida,
#Durante esse processo, você pode definir uma nova senha segura para a instalação do MySQL.
grep 'temporary password' /var/log/mysqld.log
#Saída de exemplo com a nova senha gerada:
2023-08-01T010:31:57.813212Z 6 [Note] [MY-010454] [Server] A temporary password is generated for root@localhost: Fg042yVsqg)e
#Ao fazer login no script MySQL Security com sua senha temporária, você será solicitado a alterá-la.
#Esta senha deve ser temporária e deve ser atualizada para uma senha segura o mais rápido possível.
#Ao digitar sua senha, você será questionado sobre o COMPONENTE VALIDAR SENHA. Este componente envolve a configuração de verificações
#de complexidade de senha para garantir a segurança de sua instalação do MySQL. As configurações padrão geralmente são suficientes,
#mas você pode ajustá-las para atender aos seus requisitos de segurança específicos.
#Um esboço das configurações que você precisa considerar.
#Defina uma senha para contas root.
#Defina uma senha para todas as contas.
#Remova as contas raiz que são acessíveis de fora do localhost.
#Remova contas de usuários anônimos.
#Remova o banco de dados de teste que é acessível por padrão para usuários anônimos.
#Exemplo de configurações recomendadas:
Securing the MySQL server deployment.
Enter password for user root:
The existing password for the user account root has expired. Please set a new password.
New password: <---- SET NEW PASSWORD
Re-enter new password: <---- RE-ENTER NEW PASSWORD
Re-enter new password:
The 'validate_password' component is installed on the server.
The subsequent steps will run with the existing configuration
of the component.
Using existing password for root.
Estimated strength of the password: 100
Change the password for root ? ((Press y|Y for Yes, any other key for No) : Y <---- Type Y then press the ENTER KEY (SKIP IF YOU ALREADY JUST SET)
New password:
Re-enter new password:
Estimated strength of the password: 100
Do you wish to continue with the password provided?(Press y|Y for Yes, any other key for No) : Y <---- Type Y then press the ENTER KEY.
By default, a MySQL installation has an anonymous user,
allowing anyone to log into MySQL without having to have
a user account created for them. This is intended only for
testing, and to make the installation go a bit smoother.
You should remove them before moving into a production
environment.
Remove anonymous users? (Press y|Y for Yes, any other key for No) : Y <---- Type Y then press the ENTER KEY.
Success.
Normally, root should only be allowed to connect from
'localhost'. This ensures that someone cannot guess at
the root password from the network.
Disallow root login remotely? (Press y|Y for Yes, any other key for No) : Y <---- Type Y then press the ENTER KEY.
Success.
By default, MySQL comes with a database named 'test' that
anyone can access. This is also intended only for testing,
and should be removed before moving into a production
environment.
Remove test database and access to it? (Press y|Y for Yes, any other key for No) : Y <---- Type Y then press the ENTER KEY.
- Dropping test database...
Success.
- Removing privileges on test database...
Success.
Reloading the privilege tables will ensure that all changes
made so far will take effect immediately.
Success.
All done!
AJUSTANDO O TIMEZONE - MYSQL
#--------------------------------------------------------------------------------------------------------------------------------#
mysql_tzinfo_to_sql /usr/share/zoneinfo | mysql -p -u root mysql
systemctl restart mysqld
mysql -uroot -p
SET @@global.time_zone = '+3:00';
SELECT NOW();
SET time_zone='America/Sao_Paulo';
SELECT @@time_zone;
FLUSH PRIVILEGES;
exit
0 comentários:
Postar um comentário