Advertisement
Guest User

Untitled

a guest
Jan 21st, 2016
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.79 KB | None | 0 0
  1. # Configuration options for connecting to an external SMTP server
  2. # ------------------------------------------------------------------------
  3. [[smtp]]
  4.  
  5. # The SMTP server information for email notification delivery
  6. host=localhost
  7. port=25
  8. user=
  9. password=
  10.  
  11. # Whether to use a TLS (secure) connection when talking to the SMTP server
  12. tls=no
  13.  
  14. # Default email address to use for various automated notification from Hue
  15. ## default_from_email=hue@localhost
  16.  
  17.  
  18. # Configuration options for Kerberos integration for secured Hadoop clusters
  19. # ------------------------------------------------------------------------
  20. [[kerberos]]
  21.  
  22. # Path to Hue's Kerberos keytab file
  23. ## hue_keytab=/etc/security/keytabs/hue.service.keytab
  24.  
  25. # Kerberos principal name for Hue
  26. ## hue_principal=hue/FQDN@REALM
  27.  
  28. # Path to kinit
  29. ## kinit_path=/usr/bin/kinit
  30.  
  31. ## Frequency in seconds with which Hue will renew its keytab. Default 1h.
  32. ## reinit_frequency=3600
  33.  
  34. ## Path to keep Kerberos credentials cached.
  35. ## ccache_path=/tmp/hue_krb5_ccache
  36.  
  37.  
  38. ###########################################################################
  39. # Settings to configure your Hadoop cluster.
  40. ###########################################################################
  41.  
  42. [hadoop]
  43.  
  44. # Configuration for HDFS NameNode
  45. # ------------------------------------------------------------------------
  46. [[hdfs_clusters]]
  47.  
  48. [[[default]]]
  49. # Enter the filesystem uri
  50. fs_defaultfs=hdfs://localhost:8020
  51.  
  52. # Use WebHdfs/HttpFs as the communication mechanism. To fallback to
  53. # using the Thrift plugin (used in Hue 1.x), this must be uncommented
  54. # and explicitly set to the empty value.
  55. webhdfs_url=http://localhost:50070/webhdfs/v1/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement