アリクラウドUbuntu 16.04導入Mysqlデータベース


アリクラウドのサーバーを買って、仕事をしたいです.そこで、Mysqlデータベースを構築する準備をしました.以下は具体的な操作の流れです.
1.mysqlサービス側sudo apt-get install mysql-serverのインストール
root@*************:~# sudo apt-get install mysql-server
Reading package lists... Done
Building dependency tree       
Reading state information... Done
...(    )
After this operation, 162 MB of additional disk space will be used.
Do you want to continue? [Y/n] y

2.mysqlクライアントsudo apt-get install mysql-clientのインストール
root@*************:~# sudo apt-get install mysql-client
Reading package lists... Done
Building dependency tree       
Reading state information... Done
...(    )
Unpacking mysql-client (5.7.24-0ubuntu0.16.04.1) ...
Setting up mysql-client (5.7.24-0ubuntu0.16.04.1) ...

3.sudo apt install libmysqlclient-devの実行
root@*************:~# sudo apt install libmysqlclient-dev
Reading package lists... Done
Building dependency tree       
Reading state information... Done
...(    )
After this operation, 11.4 MB of additional disk space will be used.
Do you want to continue? [Y/n] y
Abort.

上記の手順を実行するにはroot権限でしか実行できません.途中でMySQLパスワードを設定する必要があります.
4.Mysqlインストール成功sudo netstat-tap|grep mysqlを検証する
          
root@*************:~# sudo netstat -tap | grep mysql
tcp        0      0 localhost:mysql         *:*                     LISTEN      1745/mysqld     
Abort.

5.【Mysqlデータベースへの登録】
mysql -uroot -p1234
-u   root     ,-p   1234      ,         。          ,         
root@*************:~# mysql -uroot -p1234
mysql: [Warning] Using a password on the command line interface can be insecure.
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 5
Server version: 5.7.24-0ubuntu0.16.04.1 (Ubuntu)

Copyright (c) 2000, 2018, 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>

これでOKです.データベースのリモートアクセスを構成する必要がある場合は、ここを参照してください.https://blog.csdn.net/Jamel_LiToo/article/details/84349288