mysql -uroot -p root GRANT ALL PRIVILEGES ON *.* TO ‘root‘@‘%‘ IDENTIFIED BY ‘root‘ WITH GRANT OPTION; /sbin/iptables -I INPUT -p tcp --dport 3306 -j ACCEPT...
分类:
数据库 时间:
2015-04-09 10:45:57
阅读次数:
123
translog(事务日志) flush Each shard has a transaction log or write ahead log associated with it. It allows to guarantee that when an index/de...
分类:
其他好文 时间:
2015-04-09 10:30:47
阅读次数:
287
>>> help(print)Help on built-in function print in module builtins:print(...) print(value, ..., sep=' ', end='\n', file=sys.stdout, flush=False) ...
分类:
编程语言 时间:
2015-04-09 00:56:37
阅读次数:
250
IO流: 文件读取,并进行判断文件类型 递归 阶乘求解 字节流 字节输入流 读取数据 InputStream 字节输出流 写入数据 OutputStream 字符流 字符输入流 读取数据 Reader 字符输出流 写入数据 Writer flush()与close()的区别; flush():只刷新...
分类:
编程语言 时间:
2015-04-09 00:42:31
阅读次数:
208
1. 授权用户root使用密码jb51从任意主机连接到mysql服务器:GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'jb51' WITH GRANT OPTION;flush privileges;2.授权用户root使用密码jb...
分类:
数据库 时间:
2015-04-08 21:26:26
阅读次数:
132
测试环境:192.168.1.192192.168.1.193mysql5.2配置192服务器:/usr/local/mysql/bin/mysql -uroot -p授权:grant replication slave,file on *.* to 'xm1'@'192.168.1.193' id...
分类:
数据库 时间:
2015-04-08 13:11:03
阅读次数:
159
mysql>GRANT SELECT,INSERT,UPDATE,DELETE ON [db_name].* TO [username]@[ipadd] identified by ‘[password]‘; [username]:远程登入的使用者代码 [db_name]:表示欲开放给使用者的数据库称 [password...
分类:
数据库 时间:
2015-04-07 12:18:07
阅读次数:
163
1、grant all privileges on *.* to root@localhost ?identified by ‘passwd‘; ? ? flush privileges; ?grant select,insert,update,delete,create,drop on 库.表 to 用户@IP identified by ‘密码′; 2、无任...
分类:
数据库 时间:
2015-04-07 10:10:22
阅读次数:
158
1.停止MySQL的服务sudo /Library/StartupItems/MySQLCOM/MySQLCOM stop2.cd /usr/local/mysql/bin./mysqld_safe --skip-grant-table3.新开个终端也是进入到mysql/bin目录./mysql -...
分类:
数据库 时间:
2015-04-05 20:11:27
阅读次数:
142
/* 启动MySQL */net start mysql/* 连接与断开服务器 */mysql -h 地址 -P 端口 -u 用户名 -p 密码/* 跳过权限验证登录MySQL */mysqld --skip-grant-tables-- 修改root密码密码加密函数password()update...
分类:
数据库 时间:
2015-04-05 18:51:17
阅读次数:
220