日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 >

mysql+5.5.18+linux+下载,mysql5.7.18+linux安装二进制包与运行

發布時間:2025/3/20 39 豆豆
生活随笔 收集整理的這篇文章主要介紹了 mysql+5.5.18+linux+下载,mysql5.7.18+linux安装二进制包与运行 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

解壓到/usr/local目錄

添加mysql用戶

shell> groupadd mysql

shell> useradd -r -g mysql -s /bin/false mysql

建立mysql默認的配置文件/etc/my.cnf

[mysqld]

user = mysql

port = 3306

server_id = 1

socket=/tmp/mysql.sock

basedir =/usr/local/mysql

datadir =/usr/local/mysql/data # 數據路徑

建立data文件夾,并給mysql用戶賦予權限

shell> chmod 750 data

shell> chown -R mysql .

shell> chgrp -R mysql .

在目錄下對mysqld初始化

bin/mysqld –initialize –user=mysql

添加服務,啟動

cp /usr/local/mysql/support-files/mysql.server /etc/init.d/mysqld

service mysqld start

alter user 'root'@'localhost' identified by 'newpswd'

重新登錄,見到熟悉的界面

Welcome to the MySQL monitor. Commands end with ; or \g.

Your MySQL connection id is 5

Server version: 5.7.18 MySQL Community Server (GPL)

Copyright (c) 2000, 2017, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its

affiliates. Other names may be trademarks of their respective

owners.

Type ‘help;’ or ‘\h’ for help. Type ‘\c’ to clear the current input statement.

mysql>

當然啦,為了省點事,可以這么寫:

bin/mysqld –initialize-insecure –user=mysql

這樣建立的root賬戶初始沒有密碼。

總結

以上是生活随笔為你收集整理的mysql+5.5.18+linux+下载,mysql5.7.18+linux安装二进制包与运行的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。