症状 zato start server 启动server后,过一会server自动关闭了 解决 查看日志 UnicodeDecodeError: 'ascii' codec can't decode byte 0xc2 in position 269: ordinal not in range(128) Traceback (most recent call last): File , in spawn_worker self.cfg.post_fork(self, worker) File…
dell r710 安装ubuntu 12.04 server 启动后进入initramfs解决办法 grub 启动菜单后加入 rootdelay=90, 如下:/boot/vmlinuz-2.6.32-38-server root=UUID=8685ab7a-20a9-4ddf-81c8-9ab9a7043fd8 ro   quiet rootdelay=90 原因: [sda] 初始化过慢,根文件系统由ramfs切到sda失败引起,需要延迟一会…
突然发现HBASE无法使用了. 然后看到在分布式的情况下,节点上的HRegionServer启动后自动关闭. 同步时间就能解决这个问题. 网上同步时间 1.  安装ntpdate工具 sudo apt-get install ntpdate 2.  设置系统时间与网络时间同步 sudo ntpdate cn.pool.ntp.org…
ERROR org.apache.hadoop.hdfs.server.datanode.DataNode: java.io.IOException: Incompatible namespaceIDs in /var/lib/hadoop-0.20/cache/hdfs/dfs/data: namenode namespaceID = 240012870; datanode namespaceID = 1462711424 . 问题:Namenode上namespaceID与datanode上…
参考链接 http://f.dataguru.cn/thread-209058-1-1.html 我有4HRegionServer节点,1个master,其中3个是unbuntu 系统,2个节点是centos 6.5, 启动过程都很正常,但是一会后slave3 的HRegionServer会自动关闭. 查看tail -n100 hbase-hadoop-regionserver-Slave3.log日志如下: -- ::, WARN [regionserver/Slave3/] zookeepe…
第一种可能原因:路径包含中文 .添加站点 2.重启服务 3.遇见问题 apache 刚启动,1秒钟中后就停止 4.解决问题 发现是自己添加的网站中包含中文路径的问题,建议不要在自己的网站目录下包含中文. 第二种可能情况: 原先添加为中文路径,后修改为英文,依然出错: 解决方案:从phpstudy中删除,后重新添加,启动完成…
hbase重装后,hmaster却起不来,多次启动也不行,后来发现原因是在zookeeper中之前注册的hmaster仍然存在,系统中只允许一个hmaster运行.解决方法如下: 进入zk客户端,将hbase节点删除后,再次启动hmaster,正常了. ./hbase-damemon.sh start master…
1)在hbase-site.xml文件中 修改增加 ,将时间改大点<property><name>hbase.master.maxclockskew</name><value>150000</value></property>2)修改系统时间,将时间改为一致(建议采用本方法):修改日期date -s 08/20/2016修改时间date -s 15:14:00检查硬件(CMOS)时间clock -r将系统时间写入CMOSclock -…
服务器上Redis服务安装正常..却启动不了.. 报错  :   本地计算机 上的 Redis Server 服务启动后停止.某些服务在未由其他服务或程序使用时将自动停止. 最后发现是Redis的配置文件有错..因为我这里是在其他机器上配置好..修改完conf文件..直接把文件复制过去覆盖的..配置的路径不一样..或者其他配置问题.. 每一个conf文件中都有三个实体路径..都需要修改.. 苦恼了半天..最后终于解决..Redis可以正常启动了..…
1.情况描述如题所示,hbase启动以后,HMaster进程启动了,几秒钟以后自动关闭,但是HRegionServer进程正常运行: 原因是,hdfs的默认端口号是8020,而我core-site.xml中将hdfs的端口修改为了9000. <property> <name>fs.defaultFS</name> <value>hdfs://hadoop1:9000/</value> </property> 但是在我们并没有指定hdf…