Monday, December 4, 2017
Please follow below steps to fix HDP Sandbox -Mysql root password issue:
Enter
mysql -u root
UPDATE mysql.user SET Password=PASSWORD('hadoop') WHERE User='root';
FLUSH PRIVILEGES...
Sunday, November 26, 2017
How to Prepare and Clear Hortonworks Data Platform Certified Developer Exam (HDPCD -English)
HORTONWORKS UNIVERSITY
is offering HDPCD certificate and its exclusively hands-on, performance-based
exam that require we to complete a set of tasks on actual hadoop cluster
instead of just guessing multiple choice questions.
Basically HDPCD certificate categorised into 3 categories
1. Data ingestion
2. Data transformation
3. Data analysis
As...
Monday, October 30, 2017
How to use Password file with Sqoop
Chitchatiq
10/30/2017 11:21:00 AM
BigData&Hadoop, Problems&Solutions, sqoop
No comments
How to use local password-file parameter with sqoop
Problem: sometimes we have to
read password from file for sqoop command.
Solution: Passing password parameter
file to sqoop command is not a big deal. Just follow below steps:
1. Create a password with
Echo -n “<<password>> > <<passwordfilename>>
E.g....
Monday, October 9, 2017
Thursday, September 21, 2017
How to create a column in a table and that should throw error when we do SELECT * or SELECT col
Chitchatiq
9/21/2017 06:45:00 PM
Problems&Solutions
No comments
Problem:
Create a column in a table and that should give an error
if we give SELECT * or SELECT of that column
Solution:
Friends, don’t think toooooo much like how to solve this
problem. Here is the simple solution that I got.
Just use any computed column and that should not have
any syntactical errors but it should have logical error (E..g...
Monday, September 11, 2017
Wednesday, September 6, 2017
How to find and delete the top 100 most used files in Linux/Unix
Chitchatiq
9/06/2017 06:15:00 PM
Problems&Solutions
No comments
Steps to find and delete the top 100 most used files in
Linux/Unix
Command to find most disk space used
files:
find / -xdev -type f -size +100M -exec du -sh {} ';' |
sort -rh | head -n100
Command to delete the content without
removing the file
> <<filename>>
E.g.
>
sample.txt
Here > is used to empty the file
Thanks...
Saturday, September 2, 2017
How to Install MySQL on CentOS 7
Chitchatiq
9/02/2017 02:43:00 PM
MySQL Installation, Problems&Solutions
No comments

Steps to Install MySQL on Linux-CentOS 7
Step 1: Download MYSQL repositories
wget http://dev.mysql.com/get/mysql57-community-release-el7-9.noarch.rpm
Step 2: Prepare repository to install MySQL
sudo rpm -Uvh
mysql57-community-release-el7-9.noarch.rpm
Step...