Member since
02-18-2014
94
Posts
23
Kudos Received
23
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
3442 | 08-29-2019 07:56 AM | |
4200 | 07-09-2019 08:22 AM | |
2139 | 07-01-2019 02:21 PM | |
3658 | 03-19-2019 07:42 AM | |
2812 | 09-04-2018 05:29 AM |
04-25-2017
12:15 PM
Thanks @aarman; that worked wonderfully!
... View more
04-24-2017
12:11 AM
# cp /etc/my.cnf /etc/my.cnf.default # vim /etc/my.cnf -------------------------------- [mysqld] # Disable password validaion plugin validate-password=off -------------------------------- # systemctl restart mysqld
... View more
01-31-2017
04:47 AM
When I used the FullyQualifiedDomainName (with a '.' in it) the repo is working fine! parcelRepositories: ["http://localrepo.cdh-cluster.internal/parcels/cdh5/", "http://localrepo.cdh-cluster.internal/parcels/spark2/"]
... View more
10-10-2016
08:00 AM
Hello there, Director uses Cloudera Manager's API under the hood to configure services. The selection of parameters supported for HBase can be found here. http://www.cloudera.com/documentation/enterprise/properties/5-8-x/topics/cm_props_cdh580_hbase.html You can include the parameters you need in service or role configurations specified through Director, either in the UI or in a configuration file. Use the name in the "API" column of the page linked above to name each property. For example, to specify the region server message interval, include the "hbase_regionserver_msginterval" configuration property in the role configuration for region servers. A configuration file would specify it like this, perhaps in an "workers" instance group. roles { ... HBASE: [REGIONSERVER] ... } configs { HBASE { REGIONSERVER { hbase_regionserver_msginterval: 10 } } } Take a look at the sample configuration files shipped with Director for a complete example. https://www.cloudera.com/documentation/director/latest/topics/director_cluster_config.html General documentation about setting these kinds of configuration properties is here: https://www.cloudera.com/documentation/director/latest/topics/director_setting_cm_configs.html
... View more
09-01-2016
05:45 AM
Thanks for the feedback, the point is that after the configuration of the cluster performed by Cloudera Director there was no time synchonization setup. Cheers Johann
... View more
08-26-2016
04:36 PM
Thanks for the response. In the end I had to log into CM and fix critical erorrs for the Impala service. No daemon roles were assigned via the config file. The fix prompted the Enable Kerberos step to complete successfully. After that I got another error that kept Imapala from starting (short-circuit read access) but that is another problem for another post. Thanks again
... View more
08-26-2016
12:44 PM
Guru Medasani, a Solutions Architect here at Cloudera, has been able to use this technique to add EBS volumes to new instances, and he added additional commands to format the drives and mount them. Here's an extension to the script above that handles those tasks, based on his work. He used a Red Hat Enterprise Linux 7.2 AMI (ami-2051294a), so the commands for other operating systems or versions may vary. # Create filesystems on the devices
mkfs.xfs /dev/xvdf
mkfs.xfs /dev/xvdg
# Create directories for the mount points mkdir /data1 mkdir /data2
# Add the mount points to /etc/fstab
echo "/dev/xvdf /data1 xfs defaults,noatime 0 0" >> /etc/fstab
echo "/dev/xvdg /data2 xfs defaults,noatime 0 0" >> /etc/fstab
sleep 10
# Mount all the devices
mount -a
... View more
07-08-2016
09:36 AM
Hi Bill, Using localhost worked! Just used Safari to connect. Many Thanks David
... View more
06-03-2016
03:17 PM
I was able to get through this with much trial and error in where to put the config and eventually just left this part out since by default, it's set to false anyway. Wish that article was posted a lot earlier when I was working out the kinks of my .conf file.
... View more
05-31-2016
03:38 PM
Hi RanCohen, Since CentOS 7 has no predefined alias in Director, you need to enter the URL for the image you want to use. I found that this one is accepted: https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20160511 In the dialog for defining an instance template, try entering that URL in the editable input field for the image alias or URL, rather than picking from the associated dropdown menu. It can be typed or pasted in. Bill
... View more
- « Previous
- Next »