- 浏览: 59202 次
- 性别:
- 来自: 西安
最新评论
-
小胖vs小猪:
很好,一定程度上解决了我有些迷惑的问题,
JAVA中文字符编码问题详解(2)
文章列表
davinci mail配置
- 博客分类:
- java
mail:
host: smtp.126.com
port: 25
username: xxxx@126.com
fromAddress:
password: xxxxx
nickname: Davinci
davinci启动过程中的坑
- 博客分类:
- java
1、设置MainClass 首先,在configuration中配置好Spring boot配置:2、“程序包com.sun.tools.javac.util不存在” 问题解决 打开 File -> Project Structure引入tools.jar .3、连接mysql出现Unable to load authentication plugin 'caching_sha2_password' 登陆mysql成功之后输入: alter user 'root'@'localhost' identified by 'root' password expire ne ...
启动时指定编码格式,-Dfile.encoding=utf-8 .
java -jar -Dfile.encoding=utf-8 -Dserver.port=10001 demo-2.4.0.jar
product code(产品代号): 4vkjwhfeh3ufnqnmpr9brvcuyujrx3n3le serial Number(序列号):226959 password(密码): xs374ca
use mysql;
update user set authentication_string='' where user='root';
alter user'root'@'%' IDENTIFIED BY 'root';
mysql 设置root权限
- 博客分类:
- java
mysql> CREATE USER 'root'@'%' IDENTIFIED BY 'root';mysql> GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' WITH GRANT OPTION;
修改数据表和字段字符集
- 博客分类:
- java
-- 修改数据表和字段字符集
alter table tablename default character set utf8mb4 collate=utf8mb4_general_ci;
ALTER TABLE tablename convert to CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci;
netstat -aon|findstr "8080"
netstat -nltp | grep 1935(linux)
taskkill /F /PID 13716
config get requirepass
config set requirepass root
auth root
Maven-No compiler is provided in this environment. Perhaps you are running on a JRE rather than a JDK?
问题原因:eclipse默认是运行在jre上的,但是maven插件需要使用jdk,因此需要在eclipse修改Installed JRES位置在-->【Window】-->【Prefrences】-->【Java】-->【Installed JREs】
找到\项目名\.setting\文件夹下的 org.eclipse.wst.common.project.facet.core.xml文件。
<?xml version="1.0" encoding="UTF-8"?>
<faceted-project>
<fixed facet="wst.jsdt.web"/>
<installed facet="jst.web" version="2.3"/>
<inst ...
spark1.2.0伪分布式搭建
- 博客分类:
- 云计算 大数据
1、下载scala2.11.5版本,下载地址为:http://www.scala-lang.org/download/2.11.5.html;
2、安装和配置scala:
第一步:上传scala安装包 并解压
第二步 配置SCALA_HOME环境变量到bash_profile
第三步 source 使配置环境变量生效:
环境
本教程使用 Ubuntu 14.04 64位 作为系统环境,基于原生 Hadoop 2,在 Hadoop 2.6.0 (stable) 版本下验证通过,可适合任何 Hadoop 2.x.y 版本,例如 Hadoop 2.7.1,Hadoop 2.4.1 等。
本教程简单的使用两个节点作为集群环境: 一个作为 Master ...
环境
本教程使用 Ubuntu 14.04 64位 作为系统环境(Ubuntu 12.04 也行,32位、64位均可),请自行安装系统(可参考使用VirtualBox安装Ubuntu)。
如果用的是 CentOS/RedHat 系统,请查看相应的CentOS安装Hadoop教程_单机伪分布式配置。
本教程基于原生 Hadoop 2,在 Hadoop 2.6.0 (stable) 版本下验证通过,可适合任何 Hadoop 2.x.y 版本,例如 Hadoop 2.4.1。
Hadoop版本
Hadoop 有两
查看发现是端口被占用,查找占用6000/60020的进程并杀死:
1
[hadoop@Master logs]$ netstat -apn | grep 60000
2
(Not all processes could be identified, non-owned process info
3
will not be shown, you would have to be root to see it all.)
4
tcp 0 0 ::ffff:192.168.1.2:60000 :::* LI ...