天涯海角异孤星
1、创建名为 demo 密码为 123456 的账户:
CREATE USER 'demo'@'%' identified by '123456';
其中 'demo'@'%'
其中的 %
表示该账户可以从任意 IP 登录,可以改成指定 IP 登录,如 'demo'@'192.168.1.125'
,或指定 IP 段 'demo'@'192.168.1.%'
。
2、把数据库 demodb 授权给该账户:
GRANT ALL PRIVILEGES ON `demodb`.* TO 'demo'@'%' WITH GRANT OPTION;
其中 `demodb`.*
表示授权数据库 demodb 的所有权限。
3、刷新权限缓存:
FLUSH PRIVILEGES;
别忘了执行这条指令,不然可能无法正常登录。
默认cp命令拷贝只是文件的内容,文件的修改时间是不同的
[root@localhost test]# ll
总用量 4
-rwxr--r-- 1 root root 277 2月 14 16:00 hello.pl
[root@localhost test]# cp hello.pl hello.pl1
[root@localhost test]# ll
总用量 8
-rwxr--r-- 1 root root 277 2月 14 16:00 hello.pl
-rwxr--r-- 1 root root 277 2月 14 16:01 hello.pl1
如果想复制拷贝访问权限和修改时间,可以使用-p参数实现。
[root@localhost test]# cp -p hello.pl hello.pl2
[root@localhost test]# ll
总用量 12
-rwxr--r-- 1 root root 277 2月 14 16:00 hello.pl
-rwxr--r-- 1 root root 277 2月 14 16:01 hello.pl1
-rwxr--r-- 1 root root 277 2月 14 16:00 hello.pl2