在Ubuntu上使用apt-get安裝MySQL+安全優化
使用apt-get安裝的好處是,你不用自己去解決軟體之間的依賴問題,基本上apt執行完成,也就把軟體安裝好了,下面介紹使用apt的方法來安裝MySQL,同時也會介紹安裝完成後的安全優化。
注意:下面的操作都是以新安裝的Ubuntu 15.10來作為演示的。
1.使用apt安裝MySQL
-
安裝MySQL資料庫:
注意:在安裝過程中會幾次要求你設定MySQL資料庫的管理員使用者密碼,我們這裡先不設定。(出現要求設定的頁面時直接按“確定”即可。)
1
|
xpleaf@leaf:~$ sudo apt-get install mysql-server mysql-client libmysqlclient-dev
|
注意在你的系統上檢視安裝成功後的提示資訊。
-
開啟MySQL服務:
1
|
xpleaf@leaf:~$ sudo service mysql start
|
-
登陸到MySQL資料庫中:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
xpleaf@leaf:~$ mysql -u root Welcome to the MySQL monitor. Commands end with ; or g. Your MySQL connection id is 7
Server version: 5.6.28-0ubuntu0.15.10.1 (Ubuntu) Copyright (c) 2000, 2015, 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> |
由於在安裝的時候並沒有為MySQL資料庫的root使用者設定密碼,所以這裡不用輸入密碼就可以進入到MySQL資料庫中了。
其實如果是非生產環境要求的話,像上面這樣使用apt-get簡單安裝就可以了,當然如果是用於生產環境的,那麼建議還是使用原始碼安裝。
2.MySQL安全優化
至於為什麼要安全優化,可以看博主寫的用原始碼安裝MySQL的博文:《在CentOS上原始碼安裝MySQL+安裝問題解決+安全優化》
下面就直接給出操作的步驟。(注意:要確保MySQL服務已經開啟,上面已經給出方法)
(1)為root使用者建立密碼
1
2
3
4
5
6
7
|
xpleaf@leaf:~$ mysql -u root mysql> update mysql.user set password = password( `123456` ) where User = `root` ;
Query OK, 4 rows affected (0.00 sec) Rows matched: 4 Changed: 4 Warnings: 0 mysql> flush privileges; Query OK, 0 rows affected (0.00 sec) |
上面就為root使用者建立了密碼`123456`。
執行完之後再檢視一下當前的賬戶資訊:
1
2
3
4
5
6
7
8
9
10
11
|
mysql> select User, Host, Password from mysql.user;
+------------------+-----------+-------------------------------------------+ | User | Host | Password | +------------------+-----------+-------------------------------------------+ | root | localhost | *6BB4837EB74329105EE4568DDA7DC67ED2CA2AD9 | | root | leaf | *6BB4837EB74329105EE4568DDA7DC67ED2CA2AD9 | | root | 127.0.0.1 | *6BB4837EB74329105EE4568DDA7DC67ED2CA2AD9 | | root | ::1 | *6BB4837EB74329105EE4568DDA7DC67ED2CA2AD9 | | debian-sys-maint | localhost | *6A368D614E978D78292FC3257D3958C6A7B241EF | +------------------+-----------+-------------------------------------------+ 5 rows in set (0.00 sec)
|
需要注意的是,由於我們已經為root使用者設定了密碼,所以在下次登陸的時候請指定-p引數:
1
2
|
xpleaf@leaf:~$ mysql -u root -p Enter password: |
密碼就是我們設定的`123456`。
(2)刪除test資料庫或名字以test開頭的資料庫
操作如下:
1
2
3
4
5
|
mysql> delete from mysql.db where db like `test%` ;
Query OK, 0 rows affected (0.00 sec) mysql> flush privileges; Query OK, 0 rows affected (0.00 sec) |
OK,到這裡的話,使用apt-get安裝MySQL以及MySQL的基本安全優化就完成了,應該不會有太大的問題。
本文轉自 xpleaf 51CTO部落格,原文連結:http://blog.51cto.com/xpleaf/1748704,如需轉載請自行聯絡原作者
相關文章
- 在CentOS上使用yum安裝MySQL+安全優化CentOSMySql優化
- 在Ubuntu上原始碼安裝MySQL+安裝問題解決+安全優化Ubuntu原始碼MySql優化
- 在CentOS上原始碼安裝MySQL+安裝問題解決+安全優化CentOS原始碼MySql優化
- ubuntu apt-get 解除安裝Ubuntuapt-get
- Ubuntu apt-get 安裝 MongoDBUbuntuapt-getMongoDB
- 在Ubuntu上安裝OpenShift並使用Ubuntu
- 【Ubuntu】在Ubuntu上安裝微信Ubuntu
- 在 Ubuntu 上使用原始碼安裝 OpenRestyUbuntu原始碼REST
- 在ubuntu上安裝docker, 使用國內的安裝源UbuntuDocker
- 在Ubuntu上安裝MariaDBUbuntu
- 在 Ubuntu 上安裝 Budgie 桌面Ubuntu
- 在Ubuntu上安裝openssh(轉)Ubuntu
- 在virtualbox上安裝ubuntuUbuntu
- 在 Ubuntu 14.04 上安裝 Ubuntu Tweak 0.8.8Ubuntu
- 在ubuntu中用apt-get安裝LEMP棧(linux+nginx+mysql+php)Ubuntuapt-getLinuxNginxMySqlPHP
- 教程:在Ubuntu 18.04.1上安裝ElasticsearchUbuntuElasticsearch
- 在Ubuntu 18.04上安裝TensorflowUbuntu
- 在Ubuntu上安裝LAMP伺服器UbuntuLAMP伺服器
- 在Ubuntu上單機安裝HadoopUbuntuHadoop
- ubuntu 14.04 下通過apt-get 安裝jdkUbuntuapt-getJDK
- Ubuntu 上 Wireshark 的安裝與使用Ubuntu
- 怎樣安裝在ubuntu12.04上安裝mysqlUbuntuMySql
- 在 Ubuntu 15.10 上安裝 Intel Graphics 安裝器UbuntuIntel
- cuda在ubuntu的安裝使用分享Ubuntu
- 怎樣在 Ubuntu Linux 上安裝 MySQLUbuntuLinuxMySql
- 在Ubuntu上安裝Hadoop單機版UbuntuHadoop
- 教你在Ubuntu上安裝Linux核心6.1UbuntuLinux
- Typecho在Ubuntu 22.04上的安裝部署Ubuntu
- Ubuntu上PHPUnit安裝UbuntuPHP
- Ubuntu 上 安裝 redisUbuntuRedis
- 在Ubuntu安裝MySqlUbuntuMySql
- Kaldi學習(一)kaldi在ubuntu上的安裝Ubuntu
- 在Ubuntu上安裝Drone持續整合環境Ubuntu
- 在Ubuntu 18.04.1上安裝Hadoop叢集UbuntuHadoop
- 在 Ubuntu 22.04 上安裝 KubeSphere 實戰教程Ubuntu
- 最新版 Harbor 在ubuntu系統上安裝Ubuntu
- 在Ubuntu16.04上安裝LEMP環境Ubuntu
- 在Ubuntu上使用MySQL設定遠端資料庫優化站點效能UbuntuMySql資料庫優化