Skip to content

Instantly share code, notes, and snippets.

View eveningcafe's full-sized avatar
🦄
IYKYK

Hoa Ngo eveningcafe

🦄
IYKYK
View GitHub Profile
@eveningcafe
eveningcafe / core-site.xml
Created June 27, 2018 06:59 — forked from m0zes/core-site.xml
hadoop configuration with ceph
<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="configuration.xsl"?>
<configuration>
<property>
<name>hadoop.proxyuser.mapred.groups</name>
<value>*</value>
</property>

Install Ceilometer + Gnocchi with backend Ceph

In Controller node

  • Create database
mysql -uroot -pWelcome123

CREATE DATABASE gnocchi;
GRANT ALL PRIVILEGES ON gnocchi.* TO 'gnocchi'@'localhost' IDENTIFIED BY 'Welcome123' WITH GRANT OPTION ;