1. Laden Sie das MySQL-Installationspaket von der offiziellen Website herunter
Das folgende Bild ist eine Einführung in das MySQL-Installationspaket
2, Installieren Sie das Softwarepaket
1. Installieren Sie Abhängigkeiten
# yum -y install perl-Date-Dumper perl-JSON perl-Time-HiRes
2. Deinstallieren Sie die alte Version von Paket
# tar -xvf mysql-5.7.24.tar //解压mysql包
4. Daten löschen
[root@localhost ~]# rm -rf /etc/my.cnf
[root@localhost ~]# rm -rf /var/lib/mysql/*
Warnung: /var/log /mariadb/mariadb.log wurde als /var /log/mariadb/mariadb.log.rpmsave
[root@localhost ~]# rpm -e --nodeps mariadb-server mariadb
6 gespeichert. Installieren Sie Ihre Quelle
#yum -y remove mariadb-libs.x86_64 1:5.5.52-1.el7
oder
#yum -y install mysql-community-client mysql-community-common mysql-community-devel mysql-community-embedded mysql-community-embedded-compat mysql-community-embedded-devel mysql-community-libs mysql-community-libs-compat mysql-community-minimal-debuginfo mysql-community-server mysql-community-test
#yum -y install mysql-community-*.rpm
8. Starten Sie den Dienst
# rpm -qa | grep -y mysql
1. Überprüfen Sie das zufällig generierte Root-Passwort
# systemctl start mysqld # systemctl enable mysqld //设置开机自启 # systemctl status mysqld [root@proxy mysql]# ss -antulp | grep mysqld //查看服务启动端口 # ps aux | grep mysqld //查进程
Anfängliches Passwort zum Anmelden bei MySQL:
(!!! Sie müssen die Passwortverwaltung sofort ändern, wenn Sie sich mit einem zufällig generierten Passwort anmelden, sonst wird ein Fehler gemeldet)
2. Client-Befehl mysql, um eine Verbindung zur Datenbank herzustellen
# grep password /var/log/mysqld.log # grep 'temporary password' /var/log/mysqld.log //随机生成的管理密码
4. Ändern Sie das Passwort
1. Sie können nur das Passwort ändern# mysql -hlocalhost -uroot -p'pIhMu,i2OS#,' //用初始密码登录 mysql> \h //登录成功后,查可用的快捷键
mysql> alter user root@"localhost" identified by "123qqq...A";
Empfohlenes Tutorial:
MySQL-TutorialDas obige ist der detaillierte Inhalt vonErstellen Sie einen MySQL-Server auf einem Linux-System. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!