上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 24 下一页
摘要: MySQL 的官网下载地址:http://www.mysql.com/downloads/ 在这个下载界面会有几个版本的选择。 1. MySQL Community Server 社区版本,开源免费,但不提供官方技术支持。 2. MySQL Enterprise Edition 企业版本,需付费,可以试用30天。 3. MySQL Cluster 集群版,开源免费。可将几个MySQL Serv... 阅读全文
posted @ 2016-06-08 17:54 Earic 阅读(906) 评论(0) 推荐(0) 编辑
摘要: 1、配置eclipse的maven 2、在Eclipse里面New -> Maven Project -> 选择“Create a simple project” Group Id: com.demo Artifact Id: multi-modules-demo Packaging: pom Name: Multi Modules Demo 点击完成(这是一个父项目,不需要有什么源码,那么,... 阅读全文
posted @ 2016-06-08 17:34 Earic 阅读(492) 评论(0) 推荐(0) 编辑
摘要: 项目->.project -> 增加<?xml version="1.0" encoding="UTF-8"?><projectDescription> <name>job</name> <comment></comment> <projects> </projects> <buildSpec> < 阅读全文
posted @ 2016-06-08 15:36 Earic 阅读(705) 评论(0) 推荐(0) 编辑
摘要: 可能有两个原因:1、maven中某些jar包下载不下来 从其他地方下载jar文件放到相应maven本地库的.m2里2、.classpath文件中缺少(下面代码的作用是制定maven的jar发布路径)<classpathentry kind="con" path="org.maven.ide.ecli 阅读全文
posted @ 2016-06-08 15:36 Earic 阅读(3747) 评论(0) 推荐(0) 编辑
摘要: 1、配置tomcat a、配置jdk b、CATALINA_HOME=c:\tomcat CATALINA_BASE=c:\tomcat 2、tomcat配置密码 C:\Program Files\other\apache-tomcat-7.0.69\conf\tomcat-users.xml ... 阅读全文
posted @ 2016-05-29 17:30 Earic 阅读(1195) 评论(0) 推荐(0) 编辑
摘要: COLOR 0A CLS @ECHO Off Title 查询局域网内在线电脑IP :send @ECHO off&setlocal enabledelayedexpansion ECHO 正在获取本机的IP地址,请稍等... for /f "tokens=3 skip=2 delims=: " %%i in ('nbtstat -n') do ( set "IP=%%i" set IP=!... 阅读全文
posted @ 2016-05-25 21:51 Earic 阅读(1111) 评论(0) 推荐(0) 编辑
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2016-05-24 21:08 Earic 阅读(24) 评论(0) 推荐(0) 编辑
摘要: 安装crontab:[root@CentOS ~]# yum install vixie-cron[root@CentOS ~]# yum install crontabs/sbin/service crond start #启动服务/sbin/service crond stop #关闭服务/sb 阅读全文
posted @ 2016-05-24 20:45 Earic 阅读(185) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2016-05-24 17:12 Earic 阅读(2695) 评论(0) 推荐(0) 编辑
摘要: 下载地址 阅读全文
posted @ 2016-05-20 15:17 Earic 阅读(201) 评论(0) 推荐(0) 编辑
摘要: 1、确认链接 2、确认服务TCP/IP NetBIOS Helper 启动 3、secpol.msc 确认 本地策略->用户权限分配 如图 阅读全文
posted @ 2016-05-20 09:38 Earic 阅读(615) 评论(0) 推荐(0) 编辑
摘要: StringBuffer buf = new StringBuffer(1000); try { Process pos = Runtime.getRuntime().exec("sh " + cmd); pos.waitFor(); InputStreamRead... 阅读全文
posted @ 2016-05-20 06:55 Earic 阅读(354) 评论(0) 推荐(0) 编辑
摘要: SharpSSH或JSCH使用diffie-hellman-group1-sha1和diffie-hellman-group-exchange-sha1密钥交换算法,而OpenSSH在6.7p1版本之后默认不再采用以上算法,需要手工添加。 在/etc/ssh/sshd_config中添加: 之后重启 阅读全文
posted @ 2016-05-18 13:26 Earic 阅读(4063) 评论(0) 推荐(0) 编辑
摘要: 出现java.lang.UnsupportedClassVersionError 错误的原因,是因为我们使用高版本的JDK编译的Java class文件试图在较低版本的JVM上运行,所报的错误。 版本换一致,解决 阅读全文
posted @ 2016-05-18 04:25 Earic 阅读(196) 评论(0) 推荐(0) 编辑
摘要: hadoop dfsadmin -safemode get 查看namenode是否处于安全模式 hadoop dfsadmin -report 显示文件系统的统计信息,以及所连接的各个datanode的信息 http://hadoop.apache.org/docs/r1.0.4/cn/hdfs_shell.html hadoop fs -copyFromLocal URI hadoop f... 阅读全文
posted @ 2016-05-15 17:24 Earic 阅读(170) 评论(0) 推荐(0) 编辑
摘要: 1、配置git 2、create git repository 3、git-->add commit Directory 4、提交代码 git remote add origin https://github.com/lujianing/ueditor.git git push -u origin master 注意:如果报错-->先fetch再merge-->push 阅读全文
posted @ 2016-05-15 11:57 Earic 阅读(232) 评论(0) 推荐(0) 编辑
摘要: Properties prop = System.getProperties(); prop.setProperty("http.proxyHost", "localhost"); // 设置http访问要使用的代理服务器的端口 prop.setProperty("http.proxyPort", "8118"); Properties props = System.ge... 阅读全文
posted @ 2016-05-07 18:22 Earic 阅读(389) 评论(0) 推荐(0) 编辑
摘要: 检查是否Jar冲突 保留一个jersey-server-*.jar 阅读全文
posted @ 2016-05-06 11:55 Earic 阅读(1089) 评论(0) 推荐(0) 编辑
摘要: 在windows环境下 将服务器上的/etc/krb5.conf 复制到<jdk-home>/jre/lib/security 阅读全文
posted @ 2016-05-05 11:31 Earic 阅读(1014) 评论(0) 推荐(0) 编辑
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2016-05-03 10:45 Earic 阅读(71) 评论(0) 推荐(0) 编辑
摘要: select * from meta_hdfs_info_bak where not exists (select 1 from meta_hdfs_info where meta_hdfs_info.hdfsPath=meta_hdfs_info_bak.hdfsPath AND meta_hdfs_info.clusterUserId=meta_hdfs_info_bak.cluster... 阅读全文
posted @ 2016-04-26 15:41 Earic 阅读(153) 评论(0) 推荐(0) 编辑
摘要: 1、移动到C:\Users\spring\AppData\Roaming\Microsoft\Windows\Start Menu\Programs 2、拖拽 阅读全文
posted @ 2016-04-25 18:03 Earic 阅读(1824) 评论(0) 推荐(0) 编辑
摘要: @Options(flushCache = true, timeout = 20000) 阅读全文
posted @ 2016-04-19 14:21 Earic 阅读(175) 评论(0) 推荐(0) 编辑
摘要: Hive:是一个构建在Hadoop 上的数据仓库框架,MapReduce (输入hive启动shell)metastore:是Hive元数据的集中存放地HBase:是一个在HDFS上开发的面向列的分布式nosql数据库(输入hbase shell启动shell)HBase 提供Avro,REST,T 阅读全文
posted @ 2016-04-12 20:13 Earic 阅读(211) 评论(0) 推荐(0) 编辑
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2016-04-12 20:12 Earic 阅读(83) 评论(0) 推荐(0) 编辑
摘要: 启动ok 阅读全文
posted @ 2016-04-04 20:08 Earic 阅读(1780) 评论(0) 推荐(0) 编辑
摘要: 1、确认Windows Firewall服务是否启动(有异常可参考下面) 2、导入注册表 阅读全文
posted @ 2016-04-01 21:16 Earic 阅读(8026) 评论(0) 推荐(0) 编辑
摘要: 由于删除了某些记录行,所以自增字段不连续了。重排或归零的方法:方法1:truncate table 你的表名//这样不但重新定位自增的字段,而且会将表里的数据全部删除,慎用!方法2:delete from 你的表名dbcc checkident(你的表名,reseed,0) //重新定位自增的字段, 阅读全文
posted @ 2016-03-25 09:49 Earic 阅读(591) 评论(0) 推荐(0) 编辑
摘要: Software Protection (sppsvc) 阅读全文
posted @ 2016-03-20 08:33 Earic 阅读(189) 评论(0) 推荐(0) 编辑
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2016-03-19 07:58 Earic 阅读(325) 评论(0) 推荐(0) 编辑
摘要: 1、dbvisualizer中文乱码 tools--tool properties找到Fonts--修改SQL Editor/Text Editor 将字体换成:微软雅黑、新宋体、楷体、黑体 2、dbvisualizer自动提示 tools--tool properties找到SQL Commander--Auto Completion 都打上勾 3、SQL提示 修改SQL提示的步... 阅读全文
posted @ 2016-03-18 22:09 Earic 阅读(2284) 评论(0) 推荐(0) 编辑
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2016-03-17 21:05 Earic 阅读(47) 评论(0) 推荐(0) 编辑
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2016-03-17 21:04 Earic 阅读(87) 评论(0) 推荐(0) 编辑
摘要: 以下内容全部是网上收集: FreeMarker的模板文件并不比HTML页面复杂多少,FreeMarker模板文件主要由如下4个部分组成: 1,文本:直接输出的部分 2,注释:格式部分,不会输出 3,插值:即${...}或#{...}格式的部分,将使用数据模型中的部分替代输出 4,FTL指令:FreeMarker指定,和HTML标记类似,名字前加#予以区分,不会输出 下面是一个Fr... 阅读全文
posted @ 2016-03-14 10:24 Earic 阅读(229) 评论(0) 推荐(0) 编辑
摘要: 在Cydia 里安装Impactor 就行了 1、在操作时需要全程联网; 2、请至少保证 20% 的电量以防止在恢复过程出现断电的情况(建议将设备连接至电源); 3、设备将恢复至出厂状态,所有用户数据都将被清除,如果有需要的话建议通过 iCloud 或者 iTunes 先进行一次完整备份; 4、进程 阅读全文
posted @ 2016-03-07 16:59 Earic 阅读(178) 评论(0) 推荐(0) 编辑
摘要: 整个地球都知道rdesktop,有了它,我们可以从Solaris或者Linux使用Windows,当然Windows要开启Windows Terminal Service。虽然也有基于GTK+的tsclient做配置,我还是倾向直接使用命令行,不仅因为自己习惯使用console命令窗口,而且命令行可 阅读全文
posted @ 2016-03-04 14:56 Earic 阅读(133) 评论(0) 推荐(0) 编辑
摘要: 1、先确认是否已安装ssh服务: [root@localhost ~]# rpm -qa | grep openssh-server openssh-server-5.3p1-19.fc12.i686 (这行表示已安装) 若未安装ssh服务,可输入: #yum(或apt-get) install openssh-server 进行安装 2、修改配置文件 #vi /etc/ssh/sshd... 阅读全文
posted @ 2016-03-02 16:12 Earic 阅读(4135) 评论(0) 推荐(0) 编辑
摘要: You need to install redhat-rpm-config which is required by some of the qt switches, probably: sudo dnf install redhat-rpm-config 阅读全文
posted @ 2016-03-02 13:43 Earic 阅读(5466) 评论(0) 推荐(1) 编辑
摘要: 一、什么是AJAX? Asynchronous JavaScript and XML (Ajax ) 是驱动新一代 Web 站点(流行术语为 Web 2.0 站点)的关键技术。Ajax 允许在不干扰 Web 应用程序的显示和行为的情况下在后台进行数据检索。使用 XMLHttpRequest 函数获取 阅读全文
posted @ 2016-02-25 10:41 Earic 阅读(519) 评论(0) 推荐(0) 编辑
摘要: dism /capture-image /imagefile:d\win.win /capturedir:c:\ /name:win81 dism /export-image /winboot /sourceimagefile:d:\win.win /sourceindex:1 /destinati 阅读全文
posted @ 2016-02-25 10:03 Earic 阅读(297) 评论(0) 推荐(0) 编辑
上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 24 下一页