mysql的主从模式配置1、改主库配置文件:[mysqld]log=c:/a.loglog-bin=mysql-binserver-id=12、授权,导数据:grant replication slave on *.* TO 'replication'@'192.168.234.123' ident...
分类:
数据库 时间:
2014-08-08 01:56:25
阅读次数:
308
$sudo apt-get remove mysql-common清理残留数据:$sudo dpkg -l |grep ^rc|awk '{print $2}' |sudo xargs dpkg -P按照正常安装步骤安装注意:如果你想进行远程访问或控制,那么你要做两件事:其一:mysql>GRANT...
分类:
数据库 时间:
2014-08-07 18:52:30
阅读次数:
326
grant execute on dbms_lock to USERNAME; dbms_lock.sleep(time)参数单位为秒 create or replace procedure initdata is num number := 0; begin for ...
分类:
数据库 时间:
2014-08-07 18:42:42
阅读次数:
486
环境:masterip:192.168.10.10salveip:192.168.10.201)在两台机器上面安装好mysql2)修改mastermy.cnf添加如下几行server-id=1log-bin=/opt/mysql/log/mysql-bin.logdatadir=/opt/mysql/datainnodb_flush_log_at_trx_commit=1sync_binlog=13)修改slavemy.cnf添加如下行serv..
分类:
数据库 时间:
2014-08-07 07:36:00
阅读次数:
271
用户权限机制1、不同用户表权限的赋予 grant select on scott.emp to software; ---当前登录用户为表所有者,则表名前不用指定所属用户2、用software登录后 select *from scott.emp; ---software才有权限查询到scot...
分类:
数据库 时间:
2014-08-07 00:16:27
阅读次数:
248
一开始我采用的方法如下: ### Stop osd
$ service ceph stop osd.0
### Flush Journal
$ ceph-osd --flush-journal -i 0
### Create symlink to partition
$ rm /var/lib/ceph/osd/ceph-0/journal
$ ln -s /de...
分类:
其他好文 时间:
2014-08-06 12:04:21
阅读次数:
424
原来root用户只有本地的权限,需要手动将远程的权限打开,尝试了好几种方法,最后还是下面这种方法管用在安装mysql的机器上运行:1、d:"mysql"bin">mysql -h localhost -u root//这样应该可以进入MySQL服务器2、mysql>GRANT ALL PRIVILE...
分类:
其他好文 时间:
2014-08-06 11:39:21
阅读次数:
177
安装服务:mysql\bin\mysqld install删除服务:mysql\bin\mysqld remove启动(暂停)服务:net start(stop) mysql修改密码:mysql>set password =password('你的密码');mysql>flush privilege...
分类:
数据库 时间:
2014-08-04 13:45:57
阅读次数:
203
Oracle建立表空间和用户 建立表空间和用户的步骤:用户建立:create user username identified by "password";授权:grant create session to username; grant create tabl...
分类:
数据库 时间:
2014-08-03 17:51:45
阅读次数:
286
Mysql中的用户 user 每一个user都对应了不同的用户地址和权限
创建Mysql用户共有三种方式1、create user 2、grant 3、操作mysql.user表
1、CREATE USER 'username'@'host' IDENTIFIED BY 'password';
例子: CREATE USER 'aa'@'localhost' IDENTIFIED...
分类:
数据库 时间:
2014-08-03 15:15:45
阅读次数:
389