C:\Program Files (x86)\JetBrains\IntelliJ IDEA Community Edition 2016.2.2\bin\idea.exe.vmoptions or for x64 C:\Program Files (x86)\JetBrains\IntelliJ IDEA Community Edition 2016.2.2\bin\idea64.exe.vmoptions
increase xms and xmx -Xms1128m -Xmx2750m
change keymap
File>Settings> search keymap Change it from Default to Eclipse if you like.
wget http://apache.stu.edu.tw/hbase/0.98.21/hbase-0.98.21-hadoop2-bin.tar.gz tar zxvf hbase-0.98.21-hadoop2-bin.tar.gz -C /usr/local cd /usr/local mv hbase-0.98.21-hadoop2 hbase chown hduser:hadoop -R /usr/local/hbase cd /usr/local/hbase vi conf/hbase-site.xml hbase.rootdir=file:///home/hduser/hbase/hfiles or hdfs://localhost:9000/hbase hbase.zookeeper.property.dataDir=/home/hduser/zookeeper 其它hbase.zookeeper相關改port什麼的就隨意
status list create 'test','cf' is_enabled 'test' put 'test','rowkey1','cf:name','alex' put 'test','rowkey2','cf:name','banana' put 'test','rowke31','cf:nickname','charlie' scan 'test' exit
apt -y update apt -y upgrade apt -y install mysql-server mysql-client #mysql5.7 mysql_secure_installation systemctl status mysql service mysql status mysql -u root -p #enter password
1 2 3 4 5 6 7 8
status create database test; grant all on test.* to 'leon' identified by 'Pw12345678'; select * from mysql.user; use test; show tables; show databases; quit