简介
该用户还未填写简介
擅长的技术栈
可提供的服务
暂无可提供的服务
使用SecureCRTPortable连接不上虚拟机,使用Tcping小工具ping端口,发现22端口没有开启,在虚拟机里开启22端口,发现需要安装opensshrick@ubuntu:~sudoapt−getinstallopenssh−server报错:rick@ubuntu: sudo apt-get install openssh-server报错: rick@ubuntu
连接MYSQL,创建DEMO所用三个分片数据库;CREATE database db1;CREATE database db2;CREATE database db3;注意:若是LINUX版本的MYSQL,则需要设置为Mysql大小写不敏感,否则可能会发生表找不到的问题。在MySQL的配置文件中my.ini [mysqld] 中增加一行 lower_case_table_n
1、string转json有三种方法第一种:string直接转jsonString json = "{\"2\":\"efg\",\"1\":\"abc\"}"; JSONObject json_test = JSONObject.fromObject(json); 将string的双引号转义即可,适用于字符串较短的第二种:将string转为list后转为jsonLis
canal项目从SimpleCanalClientTest入手,在wiki上有详细的资料这里有一个连接数据库操作,先是确定IP地址InetAddress.getLocalHost()的解释看http://blog.csdn.net/perfect5085/article/details/7283067使用:InetAddress.getLocalHost() 出现异常:“Re
CREATE TABLE employees (emp_no INT(11) NOT NULL,birth_date DATE NOT NULL,first_name VARCHAR(14) NOT NULL,last_name VARCHAR(16) NOT NULL,gender ENUM(‘M’,’F’) NOT NULL,
问题:2016-05-04 22:53:48.848 [destination = example , address = /127.0.0.1:3306 , EventParser] ERROR c.a.otter.canal.parse.inbound.mysql.MysqlEventParser - dump address /127.0.0.1:3306 has an error, ret
最近对mysql分组查询取前几条这个问题做个总结1:建表,搞点测试数据CREATE TABLE IF NOT EXISTS test (id tinyint unsigned NOT NULL AUTO_INCREMENT,type char(1) NOT NULL,data char(4) NOT NULL,PRIMARY KEY (id)) ENGIN