@echo off setlocal enabledelayedexpansion set c=AaBbCcDdEeFfGgHhIiJjKkLlMmNnOoPpQqRrSsTtUuVvWwXxYyZz1234567890!@#$& for /l %%a in (1 1 16) do ( set/a ...
转载 2021-07-27 17:03:00
131阅读
2评论
设置登录密码方法:方法一:[DHCPServer]user-interface aux 0[DHCPServer-line-aux0]authentication-modepassword[DHCPServer-line-aux0]set authenticationpassword simple admin8007效果为下方法二:利用Super命令进行权限切换[DHCPServer]user
原创 2015-07-19 16:20:11
5933阅读
创建文件~/.my.cnf[client]host = 192.168.20.202user = web_apppassword = WEB_app~!@`12port = 3306# socket = /opt/lampp/var/mysql/mysql.sockdatabase = easyweb_n...
原创 2021-08-13 10:00:04
1244阅读
用MD5去前8位,统计排序,看密码是否唯一for n in `seq 20`; do date +F% | md5sum | cut -c 1-9 | sort | uniq -c | sort -nk1;done其他方法:mkpasswd | md5sum   需要expect安装(yum -y install expect)MD5结合日期设置密码date | md5sumhead /
原创 2013-12-04 11:10:56
681阅读
创建用户提取随机密码
原创 2018-05-10 13:30:08
525阅读
2点赞
ON IF EXISTS `func_range_string_mod`$$CREATE DEFINER=`root`@`localhost` FUNCTION `func_range_string_mod`( ...
原创 2月前
72阅读
// 启动MySQL[root@wode006 tools]# systemctl start mysqld// 运行安全设置[root@wode006 ~]# mysql_secure_installationNOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MySQL      SERVER
原创 2015-07-04 01:09:39
881阅读
设置mysql密码安装完mysql后,默认用户是root密码为空,可以这样修改密
原创 3月前
3阅读
在bin目录下执行如下代码格式:mysqla...
转载 2019-08-03 18:30:00
109阅读
2评论
法一: 格式:mysqladmin -u用户名 -p旧密码 password 新密码   方法二:1.用root 进入mysqlmysql>set password =password('你密码');mysql>flush privileges; 2.使用GRANT语句 mysql>grant all on *.* to 'root'@'localhost' IDENTIFI
转载 2015-04-14 15:40:00
79阅读
2评论
[root@localhost ~]# mysqladmin -u root -p password '123456' //密码设为123456Enter password: ...
转载 9月前
52阅读
华为5700密码设置
原创 2018-01-05 16:11:27
10000+阅读
1点赞
晚上有朋友问起,简单写了一个。
原创 2009-09-12 00:03:51
1352阅读
1评论
常规生成随机密码
原创 2013-03-06 18:22:17
1225阅读
对于linux来说,如果物理上接触机器,并且重启后进去单用户模式,一切数据都会被拿走。 为了不让别人可以进入单用户模式,可以给GRUB加密。 加密分两种: 1. 明文口令加密GRUB #vim /boot/grub/grub.conf   default=0 timeout=5 splashp_w_picpath=(hd0,0)/grub/splash.xpm.gz h
原创 2012-08-07 17:12:05
502阅读
mysql设置密码及修改密码方法:1.用root 进入mysqlmysql>set password for 'user'@'localhost' =password('mypass');mysql>flush privileges;2.使用GRANT语句 mysql>grant all on *.* to 'root'@'localhost' IDENTIFIED BY '
原创 2011-04-26 16:38:04
330阅读
mysql设置访问密码 1.用root 进入mysqlmysql>set password =password('你密码'); mysql>flush privileges; 2.使用语句  mysql> all on *.* to 'root'@'localhost'&nb
转载 2017-01-30 16:13:30
502阅读
mysql如何设置密码
原创 2018-06-04 20:15:37
322阅读
1.用root 进入mysqlmysql>set password =password('你密码');mysql>flush privileges;2.使用GRANT语句 mysql>grant all on *.* to 'root'@'localhost' IDENTIFIED BY '你密码'with grant option ;mysql>flush privileges;3.进入mysql库修改user表mysql>use mysql;mysql>update user set
转载 2013-08-12 16:37:00
34阅读
2评论
  • 1
  • 2
  • 3
  • 4
  • 5