[Warning] Using a password on the command line interface can be insecure

如果将mysql密码明文写出来,进入的时候,系统前台会打印:
[Warning] Using a password on the command line interface can be insecure
意思就是说,密码露了,不安全。

执行脚本的时候,最好可以把这个东西干掉,否则一直弹

解决:
1. 在任意地方新建一个文件,存放用户名、密码
vim /etc/my.password
[client]
user=root
password=密码
 

2. 登录时不用-u -p来指定,使用--defaults-extra-file=/etc/my.password来指定配置文件进行登录即可消掉warning提示
mysql --defaults-extra-file=/etc/my.password


导入数据示例:
[root@db mysql_data]# ll *.sql
-rw-r--r--. 1 root root        15903 Feb 19 05:52 app1-20220218.sql
-rw-r--r--. 1 root root       725807 Feb 19 05:52 app2-20220218.sql
-rw-r--r--. 1 root root       245766 Feb 19 05:52 app3-20220218.sql
-rw-r--r--. 1 root root        19971 Feb 19 04:02 canager-20220218.sql
-rw-r--r--. 1 root root       213869 Feb 19 04:02 dateb-20220218.sql
-rw-r--r--. 1 root root   7629149071 Feb 19 04:05 db1-20220218.sql
-rw-r--r--. 1 root root   5177801470 Feb 19 04:39 gzs-20220218.sql
-rw-r--r--. 1 root root  19271126413 Feb 19 04:15 shegu-20220218.sql
-rw-r--r--. 1 root root          950 Feb 19 04:37 voluk-20220218.sql
-rw-r--r--. 1 root root  52776440548 Feb 19 04:36 voluic_temp-20220218.sql
-rw-r--r--. 1 root root        31384 Feb 19 05:52 ytk-20220218.sql
-rw-r--r--. 1 root root        10648 Feb 19 05:52 yko_job-20220218.sql
-rw-r--r--. 1 root root 110680794125 Feb 19 05:52 zyjm-20220218.sql
-rw-r--r--. 1 root root     38677534 Feb 19 04:37 zgip-20220218.sql


[root@db mysql_data]# pwd
/data/mysql_data
[root@db mysql_data]# mkdir tmp && cd tmp

[root@db tmp]# vim my.password 
[client]
host=192.168.1.30
user=root
password=<Password>


[root@db tmp]# vim daoru.sh 
#!/bin/bash
for i in `ls /data/mysql_data/*.sql`;do
    mysql --defaults-extra-file=/data/mysql_data/tmp/my.password -e "source $i"
done


# 运行(开始导入数据)
[root@db tmp]# nohup bash daoru.sh 2>&1 &
上一篇:数据库系统SSD7 实验5 《触发器与游标》(MySQL)


下一篇:数据库 CRUD方式 VS SQL ---> Linq ---> ---> ---> ---> ---> ORM --->SQL