Advertisement
ffilz

main conf

Jan 31st, 2025
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 1.46 KB | None | 0 0
  1. NFS_CORE_PARAM
  2. {
  3.     mount_path_pseudo = true;
  4.     NSM_Use_Caller_Name = true;
  5.     #Bind_Addr = 127.0.0.1;
  6. #   Readdir_Max_Count = 16;
  7.     Protocols = 3,4,9p;
  8. #   HAProxy_Hosts = 192.168.1.16;
  9. #   HAProxy_Hosts = 192.168.1.25;
  10. }
  11.  
  12. ###################################################
  13. #
  14. # Cache Inode paramters
  15. #
  16. ###################################################
  17.  
  18. MDCACHE
  19. {
  20. #   Entries_HWMark = 200;
  21. #   Dir_max = 1;
  22. #   Dir_Chunk = 50;
  23. #   Entries_HWMark = 20;
  24. #   Chunks_HWMark = 20;
  25. #   Dir_Chunk = 5;
  26. }
  27.  
  28. ###################################################
  29. #
  30. # NFSv4 Specific configuration stuff
  31. #
  32. ###################################################
  33. NFSv4
  34. {
  35.     # Lifetime for NFSv4 Leases
  36.     Lease_Lifetime = 20;
  37.     #Lease_Lifetime = 90;
  38.  
  39.     Graceless = true;
  40.     Enforce_UTF8_Validation = true;
  41.     DomainName = 1234.56787;
  42. }
  43.  
  44. ###################################################
  45. #
  46. # Kerberos parameters for use with RPCSEC_GSS
  47. #
  48. ###################################################
  49. NFS_KRB5
  50. {
  51.     # Principal to be used
  52.     PrincipalName = nfs ;
  53.  
  54.     # Keytab Path
  55.     KeytabPath = /etc/krb5.keytab ;
  56.  
  57.     # TRUE = krb5 support enabled
  58.     Active_krb5 = TRUE ;
  59.  
  60. }
  61.  
  62. CEPH {
  63.     #nothing
  64.     #ceph_conf = "/home/ffilz/ceph/ceph/build/ceph.conf";
  65.     ceph_conf = "/home/ffilz/ganesha/ceph/build/ceph.conf";
  66.     async = false;
  67.     zerocopy = true;
  68. }
  69.  
  70. UNUSED {
  71.     # empty
  72. }
  73.  
  74. FSAL_LIST {
  75.     name = CEPH;
  76.     name = UNUSED;
  77. }
  78.  
  79. _9P {
  80.     Nb_Worker = 2;
  81. }
  82.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement