Member since
01-19-2017
3679
Posts
632
Kudos Received
372
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 923 | 06-04-2025 11:36 PM | |
| 1525 | 03-23-2025 05:23 AM | |
| 755 | 03-17-2025 10:18 AM | |
| 2701 | 03-05-2025 01:34 PM | |
| 1801 | 03-03-2025 01:09 PM |
07-27-2018
10:17 AM
@Muthukumar Somasundaram You can easily downgrade the OpenSSL version by using the following steps. cd /usr/local/src/
wget https://www.openssl.org/source/old/1.0.1/openssl-1.0.1k.tar.gz
tar -xvf /usr/local/src/openssl-1.0.1k.tar.gz
cd /usr/local/src/openssl-1.0.1k
./config --prefix=/usr/local/ --openssldir=/usr/local/openssl
make
make test
make install
mv /usr/bin/openssl /usr/bin/openssl-bak
cp -p /usr/local/openssl/bin/openssl /usr/bin/opensslor
cp -p /usr/local/ssl/bin/openssl /usr/bin/openssl
ll -ld /usr/bin/openssl
openssl version
... View more
07-26-2018
09:26 PM
@dharam p Beautiful if that worked out then you should "Accept" the appropriate answer and close this thread.
... View more
07-26-2018
09:12 AM
@dharam p It sounds like you have a problem with your public repo connection!! I have done 2 successful installations the last couple of days using the public repo Can you do the following # yum clean all Then # yum repolist HTH
... View more
07-25-2018
09:40 PM
@dharam p Can you elaborate? Are you using public or internal repos?
... View more
07-25-2018
08:36 PM
@jhon miran I think on the new host the group zookeeper and hive weren't created. Can you run the below to check substitute hive and zookeeper cat /etc/group| grep hive If they don't exit then try creating them groupadd hive
groupadd zookeeper Then retry installing the HCAT
... View more
07-21-2018
10:59 AM
@Bryan A Any updates? If it resolved your problem please accept the answer and close the thread !!
... View more
07-20-2018
01:13 PM
1 Kudo
@Bryan A I can help out on this. I just completed an HDP 3.0 cluster installation. Centos 7 comes with MariaDB, the setup steps are exactly the same, only different MariaDB is open source in fact its a spinoff of MySQL. Assumption: Database = MySQL MariaDB root user password=welcome1 MariaDB host =MySQL_host Ranger user password= ranger First, ensure you MariaDB/MySQL is up and running. # yum install -y mysql-connector-java Setup Ambari The below step can be re-run many times so no worries ambari-server setup --jdbc-db=mysql --jdbc-driver=/usr/share/java/mysql-connector-java.jar Check status and enable autostart perform these steps as the root user # systemctl status mysql
# systemctl enable mysql.service
# systemctl start mysql.service Run the status check after the above sequence to validate that MariaDB is up and running Harden MySQL It's good practice to secure you MariaDB installation sudo mysql_secure_installation Ref: Secure MariaDB mysql -u root -pwelcome1
CREATE USER 'ranger'@'localhost' IDENTIFIED BY 'ranger';
GRANT ALL PRIVILEGES ON *.* TO 'ranger'@'localhost';
CREATE USER 'ranger'@'%' IDENTIFIED BY 'ranger';
GRANT ALL PRIVILEGES ON *.* TO 'ranger'@'%';
CREATE USER 'ranger'@'<MySQL/MariaDB_host>' IDENTIFIED BY 'ranger';
GRANT ALL PRIVILEGES ON *.* TO 'ranger'@'<MySQL/MariaDB_host>';
FLUSH PRIVILEGES;
quit; Connect as user ranger mysql -u ranger -pranger
CREATE DATABASE ranger;
use ranger;
show databases;
quit; Now in the Ambari UI when configuring the ranger components see attached screenshot replace my hostname with the FQDN of your MySQL host. And test the connection which MUST succeed to be able to install correctly Ranger. I have used a simple password Please revert
... View more
07-19-2018
07:05 PM
1 Kudo
@Steven Matison As of yesterday they weren't broken I used the below repositories yesterday and my installation was successful, can you compare the below with your repo files? wget -nv http://public-repo-1.hortonworks.com/ambari/centos7/2.x/updates/2.7.0.0/ambari.repo
wget -nv http://public-repo-1.hortonworks.com/HDP-GPL/centos7/3.x/updates/3.0.0.0/hdp.gpl.repo
wget -nv http://public-repo-1.hortonworks.com/HDP/centos7/3.x/updates/3.0.0.0/hdp.repo HTH
... View more