pseudo-distributed.ini.tmpl 36 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057
  1. #####################################
  2. # DEVELOPMENT EDITION
  3. #####################################
  4. # Hue configuration file
  5. # ===================================
  6. #
  7. # For complete documentation about the contents of this file, run
  8. # $ <hue_root>/build/env/bin/hue config_help
  9. #
  10. # All .ini files under the current directory are treated equally. Their
  11. # contents are merged to form the Hue configuration, which can
  12. # can be viewed on the Hue at
  13. # http://<hue_host>:<port>/dump_config
  14. ###########################################################################
  15. # General configuration for core Desktop features (authentication, etc)
  16. ###########################################################################
  17. [desktop]
  18. send_dbug_messages=1
  19. # Set this to a random string, the longer the better.
  20. # This is used for secure hashing in the session store.
  21. secret_key=
  22. # Webserver listens on this address and port
  23. http_host=0.0.0.0
  24. http_port=8000
  25. # Time zone name
  26. time_zone=America/Los_Angeles
  27. # Enable or disable Django debug mode
  28. ## django_debug_mode=true
  29. # Enable or disable database debug mode.
  30. ## database_logging=false
  31. # Enable or disable backtrace for server error
  32. ## http_500_debug_mode=true
  33. # Enable or disable memory profiling.
  34. ## memory_profiler=false
  35. # Server email for internal error messages
  36. ## django_server_email='hue@localhost.localdomain'
  37. # Email backend
  38. ## django_email_backend=django.core.mail.backends.smtp.EmailBackend
  39. # Webserver runs as this user
  40. ## server_user=hue
  41. ## server_group=hue
  42. # This should be the Hue admin and proxy user
  43. ## default_user=hue
  44. # This should be the hadoop cluster admin
  45. ## default_hdfs_superuser=hdfs
  46. # If set to false, runcpserver will not actually start the web server.
  47. # Used if Apache is being used as a WSGI container.
  48. ## enable_server=yes
  49. # Number of threads used by the CherryPy web server
  50. ## cherrypy_server_threads=10
  51. # Filename of SSL Certificate
  52. ## ssl_certificate=
  53. # Filename of SSL RSA Private Key
  54. ## ssl_private_key=
  55. # SSL certificate password
  56. ## ssl_password=
  57. # Execute this script to produce the SSL password. This will be used when `ssl_password` is not set.
  58. ## ssl_password_script=
  59. # List of allowed and disallowed ciphers in cipher list format.
  60. # See http://www.openssl.org/docs/apps/ciphers.html for more information on cipher list format.
  61. ## ssl_cipher_list=DEFAULT:!aNULL:!eNULL:!LOW:!EXPORT:!SSLv2
  62. # LDAP username and password of the hue user used for LDAP authentications.
  63. # Set it to use LDAP Authentication with HiveServer2 and Impala.
  64. ## ldap_username=hue
  65. ## ldap_password=
  66. # Default encoding for site data
  67. ## default_site_encoding=utf-8
  68. # Help improve Hue with anonymous usage analytics.
  69. # Use Google Analytics to see how many times an application or specific section of an application is used, nothing more.
  70. ## collect_usage=true
  71. # Support for HTTPS termination at the load-balancer level with SECURE_PROXY_SSL_HEADER.
  72. ## secure_proxy_ssl_header=false
  73. # Comma-separated list of Django middleware classes to use.
  74. # See https://docs.djangoproject.com/en/1.4/ref/middleware/ for more details on middlewares in Django.
  75. ## middleware=desktop.auth.backend.LdapSynchronizationBackend
  76. # Comma-separated list of regular expressions, which match the redirect URL.
  77. # For example, to restrict to your local domain and FQDN, the following value can be used:
  78. # ^\/.*$,^http:\/\/www.mydomain.com\/.*$
  79. ## redirect_whitelist=^\/.*$
  80. # Comma separated list of apps to not load at server startup.
  81. # e.g.: pig,zookeeper
  82. ## app_blacklist=
  83. # The directory where to store the auditing logs. Auditing is disable if the value is empty.
  84. # e.g. /var/log/hue/audit.log
  85. ## audit_event_log_dir=
  86. # Size in KB/MB/GB for audit log to rollover.
  87. ## audit_log_max_file_size=100MB
  88. # A json file containing a list of log redaction rules for cleaning sensitive data
  89. # from log files. It is defined as:
  90. #
  91. # {
  92. # "version": 1,
  93. # "rules": [
  94. # {
  95. # "description": "This is the first rule",
  96. # "trigger": "triggerstring 1",
  97. # "search": "regex 1",
  98. # "replace": "replace 1"
  99. # },
  100. # {
  101. # "description": "This is the second rule",
  102. # "trigger": "triggerstring 2",
  103. # "search": "regex 2",
  104. # "replace": "replace 2"
  105. # }
  106. # ]
  107. # }
  108. #
  109. # Redaction works by searching a string for the [TRIGGER] string. If found,
  110. # the [REGEX] is used to replace sensitive information with the
  111. # [REDACTION_MASK]. If specified with `log_redaction_string`, the
  112. # `log_redaction_string` rules will be executed after the
  113. # `log_redaction_file` rules.
  114. #
  115. # For example, here is a file that would redact passwords and social security numbers:
  116. # {
  117. # "version": 1,
  118. # "rules": [
  119. # {
  120. # "description": "Redact passwords",
  121. # "trigger": "password",
  122. # "search": "password=\".*\"",
  123. # "replace": "password=\"???\""
  124. # },
  125. # {
  126. # "description": "Redact social security numbers",
  127. # "trigger": "",
  128. # "search": "\d{3}-\d{2}-\d{4}",
  129. # "replace": "XXX-XX-XXXX"
  130. # }
  131. # ]
  132. # }
  133. # Comma separated list of strings representing the host/domain names that the Hue server can serve.
  134. # e.g.: localhost,domain1,*
  135. ## allowed_hosts=*
  136. #poll_enabled=false
  137. # Administrators
  138. # ----------------
  139. [[django_admins]]
  140. ## [[[admin1]]]
  141. ## name=john
  142. ## email=john@doe.com
  143. # UI customizations
  144. # -------------------
  145. [[custom]]
  146. # Top banner HTML code
  147. ## banner_top_html=
  148. # Configuration options for user authentication into the web application
  149. # ------------------------------------------------------------------------
  150. [[auth]]
  151. # Authentication backend. Common settings are:
  152. # - django.contrib.auth.backends.ModelBackend (entirely Django backend)
  153. # - desktop.auth.backend.AllowAllBackend (allows everyone)
  154. # - desktop.auth.backend.AllowFirstUserDjangoBackend
  155. # (Default. Relies on Django and user manager, after the first login)
  156. # - desktop.auth.backend.LdapBackend
  157. # - desktop.auth.backend.PamBackend
  158. # - desktop.auth.backend.SpnegoDjangoBackend
  159. # - desktop.auth.backend.RemoteUserDjangoBackend
  160. # - libsaml.backend.SAML2Backend
  161. # - libopenid.backend.OpenIDBackend
  162. # - liboauth.backend.OAuthBackend
  163. # (New oauth, support Twitter, Facebook, Google+ and Linkedin
  164. ## backend=desktop.auth.backend.AllowFirstUserDjangoBackend
  165. # The service to use when querying PAM.
  166. ## pam_service=login
  167. # When using the desktop.auth.backend.RemoteUserDjangoBackend, this sets
  168. # the normalized name of the header that contains the remote user.
  169. # The HTTP header in the request is converted to a key by converting
  170. # all characters to uppercase, replacing any hyphens with underscores
  171. # and adding an HTTP_ prefix to the name. So, for example, if the header
  172. # is called Remote-User that would be configured as HTTP_REMOTE_USER
  173. #
  174. # Defaults to HTTP_REMOTE_USER
  175. ## remote_user_header=HTTP_REMOTE_USER
  176. # Ignore the case of usernames when searching for existing users.
  177. # Only supported in remoteUserDjangoBackend.
  178. ## ignore_username_case=true
  179. # Ignore the case of usernames when searching for existing users to authenticate with.
  180. # Only supported in remoteUserDjangoBackend.
  181. ## force_username_lowercase=true
  182. # Users will expire after they have not logged in for 'n' amount of seconds.
  183. # A negative number means that users will never expire.
  184. ## expires_after=-1
  185. # Apply 'expires_after' to superusers.
  186. ## expire_superusers=true
  187. # Configuration options for connecting to LDAP and Active Directory
  188. # -------------------------------------------------------------------
  189. [[ldap]]
  190. # The search base for finding users and groups
  191. ## base_dn="DC=mycompany,DC=com"
  192. # URL of the LDAP server
  193. ## ldap_url=ldap://auth.mycompany.com
  194. # A PEM-format file containing certificates for the CA's that
  195. # Hue will trust for authentication over TLS.
  196. # The certificate for the CA that signed the
  197. # LDAP server certificate must be included among these certificates.
  198. # See more here http://www.openldap.org/doc/admin24/tls.html.
  199. ## ldap_cert=
  200. ## use_start_tls=true
  201. # Distinguished name of the user to bind as -- not necessary if the LDAP server
  202. # supports anonymous searches
  203. ## bind_dn="CN=ServiceAccount,DC=mycompany,DC=com"
  204. # Password of the bind user -- not necessary if the LDAP server supports
  205. # anonymous searches
  206. ## bind_password=
  207. # Pattern for searching for usernames -- Use <username> for the parameter
  208. # For use when using LdapBackend for Hue authentication
  209. ## ldap_username_pattern="uid=<username>,ou=People,dc=mycompany,dc=com"
  210. # Create users in Hue when they try to login with their LDAP credentials
  211. # For use when using LdapBackend for Hue authentication
  212. ## create_users_on_login = true
  213. # Synchronize a users groups when they login
  214. ## sync_groups_on_login=false
  215. # Ignore the case of usernames when searching for existing users in Hue.
  216. ## ignore_username_case=false
  217. # Force usernames to lowercase when creating new users from LDAP.
  218. ## force_username_lowercase=false
  219. # Use search bind authentication.
  220. ## search_bind_authentication=true
  221. # Choose which kind of subgrouping to use: nested or suboordinate (deprecated).
  222. ## subgroups=suboordinate
  223. # Define the number of levels to search for nested members.
  224. ## nested_members_search_depth=10
  225. # Whether or not to follow referrals
  226. ## follow_referrals=false
  227. # Enable python-ldap debugging.
  228. ## debug=false
  229. # Sets the debug level within the underlying LDAP C lib.
  230. ## debug_level=255
  231. # Possible values for trace_level are 0 for no logging, 1 for only logging the method calls with arguments,
  232. # 2 for logging the method calls with arguments and the complete results and 9 for also logging the traceback of method calls.
  233. ## trace_level=0
  234. [[[users]]]
  235. # Base filter for searching for users
  236. ## user_filter="objectclass=*"
  237. # The username attribute in the LDAP schema
  238. ## user_name_attr=sAMAccountName
  239. [[[groups]]]
  240. # Base filter for searching for groups
  241. ## group_filter="objectclass=*"
  242. # The username attribute in the LDAP schema
  243. ## group_name_attr=cn
  244. [[[ldap_servers]]]
  245. ## [[[[mycompany]]]]
  246. # The search base for finding users and groups
  247. ## base_dn="DC=mycompany,DC=com"
  248. # URL of the LDAP server
  249. ## ldap_url=ldap://auth.mycompany.com
  250. # A PEM-format file containing certificates for the CA's that
  251. # Hue will trust for authentication over TLS.
  252. # The certificate for the CA that signed the
  253. # LDAP server certificate must be included among these certificates.
  254. # See more here http://www.openldap.org/doc/admin24/tls.html.
  255. ## ldap_cert=
  256. ## use_start_tls=true
  257. # Distinguished name of the user to bind as -- not necessary if the LDAP server
  258. # supports anonymous searches
  259. ## bind_dn="CN=ServiceAccount,DC=mycompany,DC=com"
  260. # Password of the bind user -- not necessary if the LDAP server supports
  261. # anonymous searches
  262. ## bind_password=
  263. # Pattern for searching for usernames -- Use <username> for the parameter
  264. # For use when using LdapBackend for Hue authentication
  265. ## ldap_username_pattern="uid=<username>,ou=People,dc=mycompany,dc=com"
  266. ## Use search bind authentication.
  267. ## search_bind_authentication=true
  268. # Whether or not to follow referrals
  269. ## follow_referrals=false
  270. ## [[[[[users]]]]]
  271. # Base filter for searching for users
  272. ## user_filter="objectclass=Person"
  273. # The username attribute in the LDAP schema
  274. ## user_name_attr=sAMAccountName
  275. ## [[[[[groups]]]]]
  276. # Base filter for searching for groups
  277. ## group_filter="objectclass=groupOfNames"
  278. # The username attribute in the LDAP schema
  279. ## group_name_attr=cn
  280. # Configuration options for specifying the Desktop Database. For more info,
  281. # see http://docs.djangoproject.com/en/1.4/ref/settings/#database-engine
  282. # ------------------------------------------------------------------------
  283. [[database]]
  284. # Database engine is typically one of:
  285. # postgresql_psycopg2, mysql, sqlite3 or oracle.
  286. #
  287. # Note that for sqlite3, 'name', below is a a path to the filename. For other backends, it is the database name.
  288. # Note for Oracle, options={'threaded':true} must be set in order to avoid crashes.
  289. # Note for Oracle, you can use the Oracle Service Name by setting "port=0" and then "name=<host>:<port>/<service_name>".
  290. ## engine=sqlite3
  291. ## host=
  292. ## port=
  293. ## user=
  294. ## password=
  295. ## name=desktop/desktop.db
  296. ## options={}
  297. # Configuration options for specifying the Desktop session.
  298. # For more info, see https://docs.djangoproject.com/en/1.4/topics/http/sessions/
  299. # ------------------------------------------------------------------------
  300. [[session]]
  301. # The cookie containing the users' session ID will expire after this amount of time in seconds.
  302. # Default is 2 weeks.
  303. ## ttl=1209600
  304. # The cookie containing the users' session ID will be secure.
  305. # Should only be enabled with HTTPS.
  306. ## secure=false
  307. # The cookie containing the users' session ID will use the HTTP only flag.
  308. ## http_only=false
  309. # Use session-length cookies. Logs out the user when she closes the browser window.
  310. ## expire_at_browser_close=false
  311. # Configuration options for connecting to an external SMTP server
  312. # ------------------------------------------------------------------------
  313. [[smtp]]
  314. # The SMTP server information for email notification delivery
  315. host=localhost
  316. port=25
  317. user=
  318. password=
  319. # Whether to use a TLS (secure) connection when talking to the SMTP server
  320. tls=no
  321. # Default email address to use for various automated notification from Hue
  322. ## default_from_email=hue@localhost
  323. # Configuration options for Kerberos integration for secured Hadoop clusters
  324. # ------------------------------------------------------------------------
  325. [[kerberos]]
  326. # Path to Hue's Kerberos keytab file
  327. ## hue_keytab=
  328. # Kerberos principal name for Hue
  329. ## hue_principal=hue/hostname.foo.com
  330. # Path to kinit
  331. ## kinit_path=/path/to/kinit
  332. # Configuration options for using OAuthBackend (Core) login
  333. # ------------------------------------------------------------------------
  334. [[oauth]]
  335. # The Consumer key of the application
  336. ## consumer_key=XXXXXXXXXXXXXXXXXXXXX
  337. # The Consumer secret of the application
  338. ## consumer_secret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
  339. # The Request token URL
  340. ## request_token_url=https://api.twitter.com/oauth/request_token
  341. # The Access token URL
  342. ## access_token_url=https://api.twitter.com/oauth/access_token
  343. # The Authorize URL
  344. ## authenticate_url=https://api.twitter.com/oauth/authorize
  345. ###########################################################################
  346. # Settings to configure SAML
  347. ###########################################################################
  348. [libsaml]
  349. # Xmlsec1 binary path. This program should be executable by the user running Hue.
  350. ## xmlsec_binary=/usr/local/bin/xmlsec1
  351. # Entity ID for Hue acting as service provider.
  352. # Can also accept a pattern where '<base_url>' will be replaced with server URL base.
  353. ## entity_id="<base_url>/saml2/metadata/"
  354. # Create users from SSO on login.
  355. ## create_users_on_login=true
  356. # Required attributes to ask for from IdP.
  357. # This requires a comma separated list.
  358. ## required_attributes=uid
  359. # Optional attributes to ask for from IdP.
  360. # This requires a comma separated list.
  361. ## optional_attributes=
  362. # IdP metadata in the form of a file. This is generally an XML file containing metadata that the Identity Provider generates.
  363. ## metadata_file=
  364. # Private key to encrypt metadata with.
  365. ## key_file=
  366. # Signed certificate to send along with encrypted metadata.
  367. ## cert_file=
  368. # A mapping from attributes in the response from the IdP to django user attributes.
  369. ## user_attribute_mapping={'uid':'username'}
  370. # Have Hue initiated authn requests be signed and provide a certificate.
  371. ## authn_requests_signed=false
  372. # Have Hue initiated logout requests be signed and provide a certificate.
  373. ## logout_requests_signed=false
  374. # Username can be sourced from 'attributes' or 'nameid'.
  375. ## username_source=attributes
  376. # Performs the logout or not.
  377. ## logout_enabled=true
  378. ###########################################################################
  379. # Settings to configure OpenId
  380. ###########################################################################
  381. [libopenid]
  382. # (Required) OpenId SSO endpoint url.
  383. ## server_endpoint_url=https://www.google.com/accounts/o8/id
  384. # OpenId 1.1 identity url prefix to be used instead of SSO endpoint url
  385. # This is only supported if you are using an OpenId 1.1 endpoint
  386. ## identity_url_prefix=https://app.onelogin.com/openid/your_company.com/
  387. # Create users from OPENID on login.
  388. ## create_users_on_login=true
  389. # Use email for username
  390. ## use_email_for_username=true
  391. ###########################################################################
  392. # Settings to configure OAuth
  393. ###########################################################################
  394. [liboauth]
  395. # NOTE:
  396. # To work, each of the active (i.e. uncommented) service must have
  397. # applications created on the social network.
  398. # Then the "consumer key" and "consumer secret" must be provided here.
  399. #
  400. # The addresses where to do so are:
  401. # Twitter: https://dev.twitter.com/apps
  402. # Google+ : https://cloud.google.com/
  403. # Facebook: https://developers.facebook.com/apps
  404. # Linkedin: https://www.linkedin.com/secure/developer
  405. #
  406. # Additionnaly, the following must be set in the application settings:
  407. # Twitter: Callback URL (aka Redirect URL) must be set to http://YOUR_HUE_IP_OR_DOMAIN_NAME/oauth/social_login/oauth_authenticated
  408. # Google+ : CONSENT SCREEN must have email address
  409. # Facebook: Sandbox Mode must be DISABLED
  410. # Linkedin: "In OAuth User Agreement", r_emailaddress is REQUIRED
  411. # The Consumer key of the application
  412. ## consumer_key_twitter=
  413. ## consumer_key_google=
  414. ## consumer_key_facebook=
  415. ## consumer_key_linkedin=
  416. # The Consumer secret of the application
  417. ## consumer_secret_twitter=
  418. ## consumer_secret_google=
  419. ## consumer_secret_facebook=
  420. ## consumer_secret_linkedin=
  421. # The Request token URL
  422. ## request_token_url_twitter=https://api.twitter.com/oauth/request_token
  423. ## request_token_url_google=https://accounts.google.com/o/oauth2/auth
  424. ## request_token_url_linkedin=https://www.linkedin.com/uas/oauth2/authorization
  425. ## request_token_url_facebook=https://graph.facebook.com/oauth/authorize
  426. # The Access token URL
  427. ## access_token_url_twitter=https://api.twitter.com/oauth/access_token
  428. ## access_token_url_google=https://accounts.google.com/o/oauth2/token
  429. ## access_token_url_facebook=https://graph.facebook.com/oauth/access_token
  430. ## access_token_url_linkedin=https://api.linkedin.com/uas/oauth2/accessToken
  431. # The Authenticate URL
  432. ## authenticate_url_twitter=https://api.twitter.com/oauth/authorize
  433. ## authenticate_url_google=https://www.googleapis.com/oauth2/v1/userinfo?access_token=
  434. ## authenticate_url_facebook=https://graph.facebook.com/me?access_token=
  435. ## authenticate_url_linkedin=https://api.linkedin.com/v1/people/~:(email-address)?format=json&oauth2_access_token=
  436. # Username Map. Json Hash format.
  437. # Replaces username parts in order to simplify usernames obtained
  438. # Example: {"@sub1.domain.com":"_S1", "@sub2.domain.com":"_S2"}
  439. # converts 'email@sub1.domain.com' to 'email_S1'
  440. ## username_map={}
  441. # Whitelisted domains (only applies to Google OAuth). CSV format.
  442. ## whitelisted_domains_google=
  443. ###########################################################################
  444. # Settings for the RDBMS application
  445. ###########################################################################
  446. [librdbms]
  447. # The RDBMS app can have any number of databases configured in the databases
  448. # section. A database is known by its section name
  449. # (IE sqlite, mysql, psql, and oracle in the list below).
  450. [[databases]]
  451. # sqlite configuration.
  452. ## [[[sqlite]]]
  453. # Name to show in the UI.
  454. ## nice_name=SQLite
  455. # For SQLite, name defines the path to the database.
  456. ## name=/tmp/sqlite.db
  457. # Database backend to use.
  458. ## engine=sqlite
  459. # Database options to send to the server when connecting.
  460. # https://docs.djangoproject.com/en/1.4/ref/databases/
  461. ## options={}
  462. # mysql, oracle, or postgresql configuration.
  463. ## [[[mysql]]]
  464. # Name to show in the UI.
  465. ## nice_name="My SQL DB"
  466. # For MySQL and PostgreSQL, name is the name of the database.
  467. # For Oracle, Name is instance of the Oracle server. For express edition
  468. # this is 'xe' by default.
  469. ## name=mysqldb
  470. # Database backend to use. This can be:
  471. # 1. mysql
  472. # 2. postgresql
  473. # 3. oracle
  474. ## engine=mysql
  475. # IP or hostname of the database to connect to.
  476. ## host=localhost
  477. # Port the database server is listening to. Defaults are:
  478. # 1. MySQL: 3306
  479. # 2. PostgreSQL: 5432
  480. # 3. Oracle Express Edition: 1521
  481. ## port=3306
  482. # Username to authenticate with when connecting to the database.
  483. ## user=example
  484. # Password matching the username to authenticate with when
  485. # connecting to the database.
  486. ## password=example
  487. # Database options to send to the server when connecting.
  488. # https://docs.djangoproject.com/en/1.4/ref/databases/
  489. ## options={}
  490. ###########################################################################
  491. # Settings to configure your Hadoop cluster.
  492. ###########################################################################
  493. [hadoop]
  494. # Configuration for HDFS NameNode
  495. # ------------------------------------------------------------------------
  496. [[hdfs_clusters]]
  497. # HA support by using HttpFs
  498. [[[default]]]
  499. # Enter the filesystem uri
  500. fs_defaultfs=hdfs://localhost:8020
  501. # NameNode logical name.
  502. ## logical_name=
  503. # Use WebHdfs/HttpFs as the communication mechanism.
  504. # Domain should be the NameNode or HttpFs host.
  505. # Default port is 14000 for HttpFs.
  506. ## webhdfs_url=http://localhost:50070/webhdfs/v1
  507. # Change this if your HDFS cluster is Kerberos-secured
  508. ## security_enabled=false
  509. # In secure mode (HTTPS), if SSL certificates from YARN Rest APIs
  510. # have to be verified against certificate authority
  511. ## ssl_cert_ca_verify=True
  512. # Directory of the Hadoop configuration
  513. ## hadoop_conf_dir=$HADOOP_CONF_DIR when set or '/etc/hadoop/conf'
  514. # Configuration for YARN (MR2)
  515. # ------------------------------------------------------------------------
  516. [[yarn_clusters]]
  517. [[[default]]]
  518. # Enter the host on which you are running the ResourceManager
  519. ## resourcemanager_host=localhost
  520. # The port where the ResourceManager IPC listens on
  521. ## resourcemanager_port=8032
  522. # Whether to submit jobs to this cluster
  523. submit_to=True
  524. # Resource Manager logical name (required for HA)
  525. ## logical_name=
  526. # Change this if your YARN cluster is Kerberos-secured
  527. ## security_enabled=false
  528. # URL of the ResourceManager API
  529. ## resourcemanager_api_url=http://localhost:8088
  530. # URL of the ProxyServer API
  531. ## proxy_api_url=http://localhost:8088
  532. # URL of the HistoryServer API
  533. ## history_server_api_url=http://localhost:19888
  534. # In secure mode (HTTPS), if SSL certificates from YARN Rest APIs
  535. # have to be verified against certificate authority
  536. ## ssl_cert_ca_verify=True
  537. # HA support by specifying multiple clusters
  538. # e.g.
  539. # [[[ha]]]
  540. # Resource Manager logical name (required for HA)
  541. ## logical_name=my-rm-name
  542. # Configuration for MapReduce (MR1)
  543. # ------------------------------------------------------------------------
  544. [[mapred_clusters]]
  545. [[[default]]]
  546. # Enter the host on which you are running the Hadoop JobTracker
  547. ## jobtracker_host=localhost
  548. # The port where the JobTracker IPC listens on
  549. ## jobtracker_port=8021
  550. # JobTracker logical name for HA
  551. ## logical_name=
  552. # Thrift plug-in port for the JobTracker
  553. ## thrift_port=9290
  554. # Whether to submit jobs to this cluster
  555. submit_to=False
  556. # Change this if your MapReduce cluster is Kerberos-secured
  557. ## security_enabled=false
  558. # HA support by specifying multiple clusters
  559. # e.g.
  560. # [[[ha]]]
  561. # Enter the logical name of the JobTrackers
  562. ## logical_name=my-jt-name
  563. ###########################################################################
  564. # Settings to configure the Filebrowser app
  565. ###########################################################################
  566. [filebrowser]
  567. # Location on local filesystem where the uploaded archives are temporary stored.
  568. ## archive_upload_tempdir=/tmp
  569. ###########################################################################
  570. # Settings to configure liboozie
  571. ###########################################################################
  572. [liboozie]
  573. # The URL where the Oozie service runs on. This is required in order for
  574. # users to submit jobs. Empty value disables the config check.
  575. ## oozie_url=http://localhost:11000/oozie
  576. # Requires FQDN in oozie_url if enabled
  577. ## security_enabled=false
  578. # Location on HDFS where the workflows/coordinator are deployed when submitted.
  579. ## remote_deployement_dir=/user/hue/oozie/deployments
  580. ###########################################################################
  581. # Settings to configure the Oozie app
  582. ###########################################################################
  583. [oozie]
  584. # Location on local FS where the examples are stored.
  585. ## local_data_dir=..../examples
  586. # Location on local FS where the data for the examples is stored.
  587. ## sample_data_dir=...thirdparty/sample_data
  588. # Location on HDFS where the oozie examples and workflows are stored.
  589. ## remote_data_dir=/user/hue/oozie/workspaces
  590. # Maximum of Oozie workflows or coodinators to retrieve in one API call.
  591. ## oozie_jobs_count=100
  592. # Use Cron format for defining the frequency of a Coordinator instead of the old frequency number/unit.
  593. ## enable_cron_scheduling=true
  594. ###########################################################################
  595. # Settings to configure Beeswax with Hive
  596. ###########################################################################
  597. [beeswax]
  598. # Host where HiveServer2 is running.
  599. # If Kerberos security is enabled, use fully-qualified domain name (FQDN).
  600. ## hive_server_host=localhost
  601. # Port where HiveServer2 Thrift server runs on.
  602. ## hive_server_port=10000
  603. # Hive configuration directory, where hive-site.xml is located
  604. ## hive_conf_dir=/etc/hive/conf
  605. # Timeout in seconds for thrift calls to Hive service
  606. ## server_conn_timeout=120
  607. # Choose whether to use the old GetLog() thrift call from before Hive 0.14 to retrieve the logs.
  608. # If false, use the FetchResults() thrift call from Hive 1.0 or more instead.
  609. ## use_get_log_api=false
  610. # Set a LIMIT clause when browsing a partitioned table.
  611. # A positive value will be set as the LIMIT. If 0 or negative, do not set any limit.
  612. ## browse_partitioned_table_limit=250
  613. # A limit to the number of rows that can be downloaded from a query.
  614. # A value of -1 means there will be no limit.
  615. # A maximum of 65,000 is applied to XLS downloads.
  616. ## download_row_limit=1000000
  617. # Hue will try to close the Hive query when the user leaves the editor page.
  618. # This will free all the query resources in HiveServer2, but also make its results inaccessible.
  619. ## close_queries=false
  620. # Thrift version to use when communicating with HiveServer2.
  621. ## thrift_version=7
  622. [[ssl]]
  623. # Path to Certificate Authority certificates.
  624. ## cacerts=/etc/hue/cacerts.pem
  625. # Choose whether Hue should validate certificates received from the server.
  626. ## validate=true
  627. ###########################################################################
  628. # Settings to configure Impala
  629. ###########################################################################
  630. [impala]
  631. # Host of the Impala Server (one of the Impalad)
  632. ## server_host=localhost
  633. # Port of the Impala Server
  634. ## server_port=21050
  635. # Kerberos principal
  636. ## impala_principal=impala/hostname.foo.com
  637. # Turn on/off impersonation mechanism when talking to Impala
  638. ## impersonation_enabled=False
  639. # Number of initial rows of a result set to ask Impala to cache in order
  640. # to support re-fetching them for downloading them.
  641. # Set to 0 for disabling the option and backward compatibility.
  642. ## querycache_rows=50000
  643. # Timeout in seconds for thrift calls
  644. ## server_conn_timeout=120
  645. # Hue will try to close the Impala query when the user leaves the editor page.
  646. # This will free all the query resources in Impala, but also make its results inaccessible.
  647. ## close_queries=true
  648. # If QUERY_TIMEOUT_S > 0, the query will be timed out (i.e. cancelled) if Impala does not do any work
  649. # (compute or send back results) for that query within QUERY_TIMEOUT_S seconds.
  650. ## query_timeout_s=600
  651. [[ssl]]
  652. # SSL communication enabled for this server.
  653. ## enabled=false
  654. # Path to Certificate Authority certificates.
  655. ## cacerts=/etc/hue/cacerts.pem
  656. # Choose whether Hue should validate certificates received from the server.
  657. ## validate=true
  658. ###########################################################################
  659. # Settings to configure Pig
  660. ###########################################################################
  661. [pig]
  662. # Location of piggybank.jar on local filesystem.
  663. ## local_sample_dir=/usr/share/hue/apps/pig/examples
  664. # Location piggybank.jar will be copied to in HDFS.
  665. ## remote_data_dir=/user/hue/pig/examples
  666. ###########################################################################
  667. # Settings to configure Sqoop
  668. ###########################################################################
  669. [sqoop]
  670. # For autocompletion, fill out the librdbms section.
  671. # Sqoop server URL
  672. ## server_url=http://localhost:12000/sqoop
  673. ###########################################################################
  674. # Settings to configure Proxy
  675. ###########################################################################
  676. [proxy]
  677. # Comma-separated list of regular expressions,
  678. # which match 'host:port' of requested proxy target.
  679. ## whitelist=(localhost|127\.0\.0\.1):(50030|50070|50060|50075)
  680. # Comma-separated list of regular expressions,
  681. # which match any prefix of 'host:port/path' of requested proxy target.
  682. # This does not support matching GET parameters.
  683. ## blacklist=
  684. ###########################################################################
  685. # Settings to configure HBase Browser
  686. ###########################################################################
  687. [hbase]
  688. # Comma-separated list of HBase Thrift servers for clusters in the format of '(name|host:port)'.
  689. # Use full hostname with security.
  690. # If using Kerberos we assume GSSAPI SASL, not PLAIN.
  691. ## hbase_clusters=(Cluster|localhost:9090)
  692. # HBase configuration directory, where hbase-site.xml is located.
  693. ## hbase_conf_dir=/etc/hbase/conf
  694. # Hard limit of rows or columns per row fetched before truncating.
  695. ## truncate_limit = 500
  696. # 'buffered' is the default of the HBase Thrift Server and supports security.
  697. # 'framed' can be used to chunk up responses,
  698. # which is useful when used in conjunction with the nonblocking server in Thrift.
  699. ## thrift_transport=buffered
  700. ###########################################################################
  701. # Settings to configure Solr Search
  702. ###########################################################################
  703. [search]
  704. # URL of the Solr Server
  705. ## solr_url=http://localhost:8983/solr/
  706. # Requires FQDN in solr_url if enabled
  707. ## security_enabled=false
  708. ## Query sent when no term is entered
  709. ## empty_query=*:*
  710. ###########################################################################
  711. # Settings to configure Solr Indexer
  712. ###########################################################################
  713. [indexer]
  714. # Location of the solrctl binary.
  715. ## solrctl_path=/usr/bin/solrctl
  716. # Zookeeper ensemble.
  717. ## solr_zk_ensemble=localhost:2181/solr
  718. ###########################################################################
  719. # Settings to configure Job Designer
  720. ###########################################################################
  721. [jobsub]
  722. # Location on local FS where examples and template are stored.
  723. ## local_data_dir=..../data
  724. # Location on local FS where sample data is stored
  725. ## sample_data_dir=...thirdparty/sample_data
  726. ###########################################################################
  727. # Settings to configure Job Browser
  728. ###########################################################################
  729. [jobbrowser]
  730. # Share submitted jobs information with all users. If set to false,
  731. # submitted jobs are visible only to the owner and administrators.
  732. ## share_jobs=true
  733. ###########################################################################
  734. # Settings to configure the Zookeeper application.
  735. ###########################################################################
  736. [zookeeper]
  737. [[clusters]]
  738. [[[default]]]
  739. # Zookeeper ensemble. Comma separated list of Host/Port.
  740. # e.g. localhost:2181,localhost:2182,localhost:2183
  741. ## host_ports=localhost:2181
  742. # The URL of the REST contrib service (required for znode browsing).
  743. ## rest_url=http://localhost:9998
  744. # Name of Kerberos principal when using security.
  745. ## principal_name=zookeeper
  746. ###########################################################################
  747. # Settings to configure the Spark application.
  748. ###########################################################################
  749. [spark]
  750. # URL of the REST Spark Job Server.
  751. ## server_url=http://localhost:8090/
  752. # List of available types of snippets
  753. ## languages='[{"name": "Scala", "type": "scala"},{"name": "Python", "type": "python"},{"name": "Impala SQL", "type": "impala"},{"name": "Hive SQL", "type": "hive"},{"name": "Text", "type": "text"}]'
  754. ###########################################################################
  755. # Settings for the User Admin application
  756. ###########################################################################
  757. [useradmin]
  758. # The name of the default user group that users will be a member of
  759. ## default_user_group=default
  760. [[password_policy]]
  761. # Set password policy to all users. The default policy requires password to be at least 8 characters long,
  762. # and contain both uppercase and lowercase letters, numbers, and special characters.
  763. ## is_enabled=false
  764. ## pwd_regex="^(?=.*?[A-Z])(?=(.*[a-z]){1,})(?=(.*[\d]){1,})(?=(.*[\W_]){1,}).{8,}$"
  765. ## pwd_hint="The password must be at least 8 characters long, and must contain both uppercase and lowercase letters, at least one number, and at least one special character."
  766. ## pwd_error_message="The password must be at least 8 characters long, and must contain both uppercase and lowercase letters, at least one number, and at least one special character."
  767. ###########################################################################
  768. # Settings for the Sentry lib
  769. ###########################################################################
  770. [libsentry]
  771. # Hostname or IP of server.
  772. ## hostname=localhost
  773. # Port the sentry service is running on.
  774. ## port=8038
  775. # Sentry configuration directory, where sentry-site.xml is located.
  776. ## sentry_conf_dir=/etc/sentry/conf