{"id":37887,"date":"2024-07-01T16:00:06","date_gmt":"2024-07-01T15:00:06","guid":{"rendered":"https:\/\/airoserver.com\/?p=37887"},"modified":"2024-07-01T15:38:56","modified_gmt":"2024-07-01T14:38:56","slug":"solution-for-xfs_quota-cannot-set-limits-error-in-directadmin","status":"publish","type":"post","link":"https:\/\/airoserver.com\/de\/blog\/solution-for-xfs_quota-cannot-set-limits-error-in-directadmin\/","title":{"rendered":"Solution for Xfs_quota: Cannot Set Limits Error in DirectAdmin"},"content":{"rendered":"<h3>Solution for Xfs_quota: Cannot Set Limits Error in DirectAdmin<\/h3>\n<p>Sometimes, when creating a user in DirectAdmin or restoring a backup, you might encounter the error \u201cxfs_quota: cannot set limits: Function not implemented.\u201d<\/p>\n<p>This error indicates that DirectAdmin is trying to allocate space for an XFS filesystem. To resolve this issue, first, run the following command on your server to determine the filesystem type (XFS or EXT4) in use:<\/p>\n<div class=\"dark bg-gray-950 rounded-md border-[0.5px] border-token-border-medium\">\n<div class=\"flex items-center relative text-token-text-secondary bg-token-main-surface-secondary px-4 py-2 text-xs font-sans justify-between rounded-t-md\"><\/div>\n<div class=\"overflow-y-auto p-4\" dir=\"ltr\"><code class=\"!whitespace-pre hljs language-bash\">mount | grep <span class=\"hljs-string\">' \/home '<\/span><br \/>\n<\/code><\/div>\n<\/div>\n<p>In the above command, we checked the \/home partition. You can check other partitions based on your needs. To view all server partitions, you can use the <code>df -h<\/code> command.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-37898 size-full\" src=\"https:\/\/airoserver.com\/wp-content\/uploads\/2024\/07\/Error-in-DirectAdmin-1.webp\" alt=\"Xfs_quota Error in DirectAdmin\" width=\"2048\" height=\"492\" srcset=\"https:\/\/airoserver.com\/wp-content\/uploads\/2024\/07\/Error-in-DirectAdmin-1.webp 2048w, https:\/\/airoserver.com\/wp-content\/uploads\/2024\/07\/Error-in-DirectAdmin-1-300x72.webp 300w, https:\/\/airoserver.com\/wp-content\/uploads\/2024\/07\/Error-in-DirectAdmin-1-1024x246.webp 1024w, https:\/\/airoserver.com\/wp-content\/uploads\/2024\/07\/Error-in-DirectAdmin-1-768x185.webp 768w, https:\/\/airoserver.com\/wp-content\/uploads\/2024\/07\/Error-in-DirectAdmin-1-1536x369.webp 1536w, https:\/\/airoserver.com\/wp-content\/uploads\/2024\/07\/Error-in-DirectAdmin-1-18x4.webp 18w\" sizes=\"auto, (max-width: 2048px) 100vw, 2048px\" \/><\/p>\n<h3>Checking Filesystem Type<\/h3>\n<p>If your server is using XFS, as shown in the image, please run <code>df -h<\/code> in the server SSH:<\/p>\n<div class=\"dark bg-gray-950 rounded-md border-[0.5px] border-token-border-medium\">\n<div class=\"flex items-center relative text-token-text-secondary bg-token-main-surface-secondary px-4 py-2 text-xs font-sans justify-between rounded-t-md\"><\/div>\n<div class=\"overflow-y-auto p-4\" dir=\"ltr\"><code class=\"!whitespace-pre hljs language-bash\">[root@ ~]<span class=\"hljs-comment\"># df -h <\/span><br \/>\nFilesystem              Size  Used Avail Use% Mounted on<br \/>\n\/dev\/mapper\/centos-root  14G  2.3G   12G  17% \/<br \/>\ndevtmpfs                915M     0  915M   0% \/dev<br \/>\ntmpfs                   921M    24K  921M   1% \/dev\/shm<br \/>\ntmpfs                   921M   8.5M  912M   1% \/run<br \/>\ntmpfs                   921M     0  921M   0% \/sys\/fs\/cgroup<br \/>\n\/dev\/sda1               497M   125M  372M  26% \/boot<br \/>\n<\/code><\/div>\n<\/div>\n<p>As you can see, the \/home partition is not displayed in the list of partitions.<\/p>\n<p>Run the <code>mount | grep ' \/home '<\/code> command again. If you see <code>noquota<\/code> in the output, follow the steps below.<\/p>\n<h3>Standardizing Partitioning<\/h3>\n<p>If you do not see <code>noquota<\/code> in the output, you need to standardize the partitioning on your server by adding <code>uquota,pquota<\/code> in the <code>\/etc\/fstab<\/code> Datei.<\/p>\n<p>If <code>noquota<\/code> is seen in XFS, since <code>noquota<\/code> is the default kernel option for mounting the OS, it should be changed in the default kernel boot options. First, open the following file:<\/p>\n<div class=\"dark bg-gray-950 rounded-md border-[0.5px] border-token-border-medium\">\n<div class=\"flex items-center relative text-token-text-secondary bg-token-main-surface-secondary px-4 py-2 text-xs font-sans justify-between rounded-t-md\"><\/div>\n<div class=\"overflow-y-auto p-4\" dir=\"ltr\"><code class=\"!whitespace-pre hljs language-bash\">vi \/etc\/default\/grub<br \/>\n<\/code><\/div>\n<\/div>\n<p>Find the <code>GRUB_CMDLINE_LINUX<\/code> line in this file. This parameter will look similar to the image below (it may not be exactly the same, no worries!):<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-37896 size-full\" src=\"https:\/\/airoserver.com\/wp-content\/uploads\/2024\/07\/Error-in-DirectAdmin-3.webp\" alt=\"Xfs_quota Error in DirectAdmin\" width=\"2048\" height=\"554\" srcset=\"https:\/\/airoserver.com\/wp-content\/uploads\/2024\/07\/Error-in-DirectAdmin-3.webp 2048w, https:\/\/airoserver.com\/wp-content\/uploads\/2024\/07\/Error-in-DirectAdmin-3-300x81.webp 300w, https:\/\/airoserver.com\/wp-content\/uploads\/2024\/07\/Error-in-DirectAdmin-3-1024x277.webp 1024w, https:\/\/airoserver.com\/wp-content\/uploads\/2024\/07\/Error-in-DirectAdmin-3-768x208.webp 768w, https:\/\/airoserver.com\/wp-content\/uploads\/2024\/07\/Error-in-DirectAdmin-3-1536x416.webp 1536w, https:\/\/airoserver.com\/wp-content\/uploads\/2024\/07\/Error-in-DirectAdmin-3-18x5.webp 18w\" sizes=\"auto, (max-width: 2048px) 100vw, 2048px\" \/><\/p>\n<p>Add <code>rootflags=uquota,pquota<\/code> to the end of this parameter as shown below.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-37896 size-full\" src=\"https:\/\/airoserver.com\/wp-content\/uploads\/2024\/07\/Error-in-DirectAdmin-3.webp\" alt=\"Xfs_quota Error in DirectAdmin\" width=\"2048\" height=\"554\" srcset=\"https:\/\/airoserver.com\/wp-content\/uploads\/2024\/07\/Error-in-DirectAdmin-3.webp 2048w, https:\/\/airoserver.com\/wp-content\/uploads\/2024\/07\/Error-in-DirectAdmin-3-300x81.webp 300w, https:\/\/airoserver.com\/wp-content\/uploads\/2024\/07\/Error-in-DirectAdmin-3-1024x277.webp 1024w, https:\/\/airoserver.com\/wp-content\/uploads\/2024\/07\/Error-in-DirectAdmin-3-768x208.webp 768w, https:\/\/airoserver.com\/wp-content\/uploads\/2024\/07\/Error-in-DirectAdmin-3-1536x416.webp 1536w, https:\/\/airoserver.com\/wp-content\/uploads\/2024\/07\/Error-in-DirectAdmin-3-18x5.webp 18w\" sizes=\"auto, (max-width: 2048px) 100vw, 2048px\" \/><\/p>\n<h3>Applying the Changes<\/h3>\n<p>Based on the settings made, a backup is needed. Enter the following commands to create a new <code>grub.cfg<\/code> file (this address is different in some operating systems):<\/p>\n<div class=\"dark bg-gray-950 rounded-md border-[0.5px] border-token-border-medium\">\n<div class=\"flex items-center relative text-token-text-secondary bg-token-main-surface-secondary px-4 py-2 text-xs font-sans justify-between rounded-t-md\"><\/div>\n<div class=\"overflow-y-auto p-4\" dir=\"ltr\"><code class=\"!whitespace-pre hljs language-bash\"><span class=\"hljs-built_in\">cp<\/span> \/boot\/grub2\/grub.cfg \/boot\/grub2\/grub.cfg.orig<br \/>\ngrub2-mkconfig -o \/boot\/grub2\/grub.cfg<br \/>\n<\/code><\/div>\n<\/div>\n<p>Finally, you need to reboot the server once for the changes to be recognized by the OS kernel:<\/p>\n<div class=\"dark bg-gray-950 rounded-md border-[0.5px] border-token-border-medium\">\n<div class=\"flex items-center relative text-token-text-secondary bg-token-main-surface-secondary px-4 py-2 text-xs font-sans justify-between rounded-t-md\"><\/div>\n<div class=\"overflow-y-auto p-4\" dir=\"ltr\">\n<p><code class=\"!whitespace-pre hljs language-bash\">reboot<\/code><\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-37895 size-full\" src=\"https:\/\/airoserver.com\/wp-content\/uploads\/2024\/07\/Error-in-DirectAdmin-4.webp\" alt=\"DirectAdmin\" width=\"1024\" height=\"550\" srcset=\"https:\/\/airoserver.com\/wp-content\/uploads\/2024\/07\/Error-in-DirectAdmin-4.webp 1024w, https:\/\/airoserver.com\/wp-content\/uploads\/2024\/07\/Error-in-DirectAdmin-4-300x161.webp 300w, https:\/\/airoserver.com\/wp-content\/uploads\/2024\/07\/Error-in-DirectAdmin-4-768x413.webp 768w, https:\/\/airoserver.com\/wp-content\/uploads\/2024\/07\/Error-in-DirectAdmin-4-18x10.webp 18w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/p>\n<\/div>\n<\/div>\n<h3>Verifying the Changes<\/h3>\n<p>To ensure that the changes have been made correctly, run the <code>mount | grep ' \/home '<\/code> command again to verify that <code>usrquota,prjquota<\/code> oder <code>uquota,pquota<\/code> is in the output. If so, the settings have been correctly applied.<\/p>\n<p>Run the following command to ensure that DirectAdmin is using XFS:<\/p>\n<div class=\"dark bg-gray-950 rounded-md border-[0.5px] border-token-border-medium\">\n<div class=\"flex items-center relative text-token-text-secondary bg-token-main-surface-secondary px-4 py-2 text-xs font-sans justify-between rounded-t-md\"><\/div>\n<div class=\"overflow-y-auto p-4\" dir=\"ltr\"><code class=\"!whitespace-pre hljs language-bash\"><span class=\"hljs-built_in\">cd<\/span> \/usr\/local\/directadmin<br \/>\n.\/directadmin c | grep use_xfs_quota<br \/>\n<\/code><\/div>\n<\/div>\n<p>If you have previously created users in DirectAdmin, run the following command to ensure they are also using XFS:<\/p>\n<p>&nbsp;<\/p>\n<div class=\"dark bg-gray-950 rounded-md border-[0.5px] border-token-border-medium\">\n<div class=\"overflow-y-auto p-4\" dir=\"ltr\"><code class=\"!whitespace-pre hljs language-bash\"><span class=\"hljs-built_in\">echo<\/span> <span class=\"hljs-string\">\"action=rewrite&amp;value=quota\"<\/span> &gt;&gt; \/usr\/local\/directadmin\/data\/task.queue<br \/>\n<\/code><\/div>\n<\/div>\n<h3>Handling EXT4 Filesystem<\/h3>\n<p>If your server is using EXT4, instruct DirectAdmin not to use XFS. Open the following file:<\/p>\n<p>&nbsp;<\/p>\n<div class=\"dark bg-gray-950 rounded-md border-[0.5px] border-token-border-medium\">\n<div class=\"overflow-y-auto p-4\" dir=\"ltr\"><code class=\"!whitespace-pre hljs language-bash\">vi \/usr\/local\/directadmin\/conf\/directadmin.conf<br \/>\n<\/code><\/div>\n<\/div>\n<p>And add the following line:<\/p>\n<p>&nbsp;<\/p>\n<div class=\"dark bg-gray-950 rounded-md border-[0.5px] border-token-border-medium\">\n<div class=\"overflow-y-auto p-4\" dir=\"ltr\"><code class=\"!whitespace-pre hljs language-bash\">use_xfs_quota=0<br \/>\n<\/code><\/div>\n<\/div>\n<p>Then, run the following command to restart the DirectAdmin service and recognize the changes:<\/p>\n<p>&nbsp;<\/p>\n<div class=\"dark bg-gray-950 rounded-md border-[0.5px] border-token-border-medium\">\n<div class=\"overflow-y-auto p-4\" dir=\"ltr\">\n<p><code class=\"!whitespace-pre hljs language-bash\">service directadmin restart<\/code><\/p>\n<p>You can still read this article for more information about DirectAdmin features <a href=\"https:\/\/airoserver.com\/de\/engagiert\/directadmin-merkmale\/\" target=\"_new\" rel=\"noreferrer noopener\">here<\/a>.<\/p>\n<\/div>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>Solution for Xfs_quota: Cannot Set Limits Error in DirectAdmin Sometimes, when creating a user in DirectAdmin or restoring a backup, you might encounter the error \u201cxfs_quota: cannot set limits: Function not implemented.\u201d This error indicates that DirectAdmin is trying to allocate space for an XFS filesystem. To resolve this issue, first, run the following command [&hellip;]<\/p>","protected":false},"author":26,"featured_media":37894,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"footnotes":""},"categories":[1,182],"tags":[],"class_list":["post-37887","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-blog","category-shared-hosting"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v22.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Solution for Xfs_quota: Cannot Set Limits Error in DirectAdmin - Airoserver | Cloud Hosting Solutions<\/title>\n<meta name=\"description\" content=\"&quot;xfs_quota: cannot set limits&quot; error in DirectAdmin. follow our guide. Ensure correct filesystem settings and eliminate quota issues.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/airoserver.com\/de\/blog\/solution-for-xfs_quota-cannot-set-limits-error-in-directadmin\/\" \/>\n<meta property=\"og:locale\" content=\"de_DE\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Solution for Xfs_quota: Cannot Set Limits Error in DirectAdmin - Airoserver | Cloud Hosting Solutions\" \/>\n<meta property=\"og:description\" content=\"&quot;xfs_quota: cannot set limits&quot; error in DirectAdmin. follow our guide. Ensure correct filesystem settings and eliminate quota issues.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/airoserver.com\/de\/blog\/solution-for-xfs_quota-cannot-set-limits-error-in-directadmin\/\" \/>\n<meta property=\"og:site_name\" content=\"Airoserver | Cloud Hosting Solutions\" \/>\n<meta property=\"article:published_time\" content=\"2024-07-01T15:00:06+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-07-01T14:38:56+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/airoserver.com\/wp-content\/uploads\/2024\/07\/Error-in-DirectAdmin-5.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"1024\" \/>\n\t<meta property=\"og:image:height\" content=\"550\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"Codinoob\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Verfasst von\" \/>\n\t<meta name=\"twitter:data1\" content=\"Codinoob\" \/>\n\t<meta name=\"twitter:label2\" content=\"Gesch\u00e4tzte Lesezeit\" \/>\n\t<meta name=\"twitter:data2\" content=\"3\u00a0Minuten\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/airoserver.com\/blog\/solution-for-xfs_quota-cannot-set-limits-error-in-directadmin\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/airoserver.com\/blog\/solution-for-xfs_quota-cannot-set-limits-error-in-directadmin\/\"},\"author\":{\"name\":\"Codinoob\",\"@id\":\"https:\/\/airoserver.com\/#\/schema\/person\/98c9f3c9d2d2baaf929d2c4a53462e97\"},\"headline\":\"Solution for Xfs_quota: Cannot Set Limits Error in DirectAdmin\",\"datePublished\":\"2024-07-01T15:00:06+00:00\",\"dateModified\":\"2024-07-01T14:38:56+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/airoserver.com\/blog\/solution-for-xfs_quota-cannot-set-limits-error-in-directadmin\/\"},\"wordCount\":409,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/airoserver.com\/#organization\"},\"articleSection\":[\"Blog\",\"Shared Hosting\"],\"inLanguage\":\"de\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/airoserver.com\/blog\/solution-for-xfs_quota-cannot-set-limits-error-in-directadmin\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/airoserver.com\/blog\/solution-for-xfs_quota-cannot-set-limits-error-in-directadmin\/\",\"url\":\"https:\/\/airoserver.com\/blog\/solution-for-xfs_quota-cannot-set-limits-error-in-directadmin\/\",\"name\":\"Solution for Xfs_quota: Cannot Set Limits Error in DirectAdmin - Airoserver | Cloud Hosting Solutions\",\"isPartOf\":{\"@id\":\"https:\/\/airoserver.com\/#website\"},\"datePublished\":\"2024-07-01T15:00:06+00:00\",\"dateModified\":\"2024-07-01T14:38:56+00:00\",\"description\":\"\\\"xfs_quota: cannot set limits\\\" error in DirectAdmin. follow our guide. Ensure correct filesystem settings and eliminate quota issues.\",\"breadcrumb\":{\"@id\":\"https:\/\/airoserver.com\/blog\/solution-for-xfs_quota-cannot-set-limits-error-in-directadmin\/#breadcrumb\"},\"inLanguage\":\"de\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/airoserver.com\/blog\/solution-for-xfs_quota-cannot-set-limits-error-in-directadmin\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/airoserver.com\/blog\/solution-for-xfs_quota-cannot-set-limits-error-in-directadmin\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/airoserver.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Solution for Xfs_quota: Cannot Set Limits Error in DirectAdmin\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/airoserver.com\/#website\",\"url\":\"https:\/\/airoserver.com\/\",\"name\":\"Airoserver | Cloud Hosting Solutions\",\"description\":\"Cloud server | Dedicated server | Domain | Hosting| SSL | Virtual server | Airoserver\",\"publisher\":{\"@id\":\"https:\/\/airoserver.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/airoserver.com\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"de\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/airoserver.com\/#organization\",\"name\":\"Airoserver | Cloud Hosting Solutions\",\"url\":\"https:\/\/airoserver.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"de\",\"@id\":\"https:\/\/airoserver.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/airoserver.com\/wp-content\/uploads\/2023\/09\/logo_airoserver.png\",\"contentUrl\":\"https:\/\/airoserver.com\/wp-content\/uploads\/2023\/09\/logo_airoserver.png\",\"width\":925,\"height\":880,\"caption\":\"Airoserver | Cloud Hosting Solutions\"},\"image\":{\"@id\":\"https:\/\/airoserver.com\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/airoserver.com\/#\/schema\/person\/98c9f3c9d2d2baaf929d2c4a53462e97\",\"name\":\"Codinoob\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"de\",\"@id\":\"https:\/\/airoserver.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/016ea0daadd857a2718a67b0e8afc43ac449be1b2c2945db2414893811a00a97?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/016ea0daadd857a2718a67b0e8afc43ac449be1b2c2945db2414893811a00a97?s=96&d=mm&r=g\",\"caption\":\"Codinoob\"},\"sameAs\":[\"http:\/\/codinoob.ir\"],\"url\":\"https:\/\/airoserver.com\/de\/author\/codinoob\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Solution for Xfs_quota: Cannot Set Limits Error in DirectAdmin - Airoserver | Cloud Hosting Solutions","description":"\"xfs_quota: cannot set limits\" error in DirectAdmin. follow our guide. Ensure correct filesystem settings and eliminate quota issues.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/airoserver.com\/de\/blog\/solution-for-xfs_quota-cannot-set-limits-error-in-directadmin\/","og_locale":"de_DE","og_type":"article","og_title":"Solution for Xfs_quota: Cannot Set Limits Error in DirectAdmin - Airoserver | Cloud Hosting Solutions","og_description":"\"xfs_quota: cannot set limits\" error in DirectAdmin. follow our guide. Ensure correct filesystem settings and eliminate quota issues.","og_url":"https:\/\/airoserver.com\/de\/blog\/solution-for-xfs_quota-cannot-set-limits-error-in-directadmin\/","og_site_name":"Airoserver | Cloud Hosting Solutions","article_published_time":"2024-07-01T15:00:06+00:00","article_modified_time":"2024-07-01T14:38:56+00:00","og_image":[{"width":1024,"height":550,"url":"https:\/\/airoserver.com\/wp-content\/uploads\/2024\/07\/Error-in-DirectAdmin-5.webp","type":"image\/webp"}],"author":"Codinoob","twitter_card":"summary_large_image","twitter_misc":{"Verfasst von":"Codinoob","Gesch\u00e4tzte Lesezeit":"3\u00a0Minuten"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/airoserver.com\/blog\/solution-for-xfs_quota-cannot-set-limits-error-in-directadmin\/#article","isPartOf":{"@id":"https:\/\/airoserver.com\/blog\/solution-for-xfs_quota-cannot-set-limits-error-in-directadmin\/"},"author":{"name":"Codinoob","@id":"https:\/\/airoserver.com\/#\/schema\/person\/98c9f3c9d2d2baaf929d2c4a53462e97"},"headline":"Solution for Xfs_quota: Cannot Set Limits Error in DirectAdmin","datePublished":"2024-07-01T15:00:06+00:00","dateModified":"2024-07-01T14:38:56+00:00","mainEntityOfPage":{"@id":"https:\/\/airoserver.com\/blog\/solution-for-xfs_quota-cannot-set-limits-error-in-directadmin\/"},"wordCount":409,"commentCount":0,"publisher":{"@id":"https:\/\/airoserver.com\/#organization"},"articleSection":["Blog","Shared Hosting"],"inLanguage":"de","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/airoserver.com\/blog\/solution-for-xfs_quota-cannot-set-limits-error-in-directadmin\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/airoserver.com\/blog\/solution-for-xfs_quota-cannot-set-limits-error-in-directadmin\/","url":"https:\/\/airoserver.com\/blog\/solution-for-xfs_quota-cannot-set-limits-error-in-directadmin\/","name":"Solution for Xfs_quota: Cannot Set Limits Error in DirectAdmin - Airoserver | Cloud Hosting Solutions","isPartOf":{"@id":"https:\/\/airoserver.com\/#website"},"datePublished":"2024-07-01T15:00:06+00:00","dateModified":"2024-07-01T14:38:56+00:00","description":"\"xfs_quota: cannot set limits\" error in DirectAdmin. follow our guide. Ensure correct filesystem settings and eliminate quota issues.","breadcrumb":{"@id":"https:\/\/airoserver.com\/blog\/solution-for-xfs_quota-cannot-set-limits-error-in-directadmin\/#breadcrumb"},"inLanguage":"de","potentialAction":[{"@type":"ReadAction","target":["https:\/\/airoserver.com\/blog\/solution-for-xfs_quota-cannot-set-limits-error-in-directadmin\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/airoserver.com\/blog\/solution-for-xfs_quota-cannot-set-limits-error-in-directadmin\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/airoserver.com\/"},{"@type":"ListItem","position":2,"name":"Solution for Xfs_quota: Cannot Set Limits Error in DirectAdmin"}]},{"@type":"WebSite","@id":"https:\/\/airoserver.com\/#website","url":"https:\/\/airoserver.com\/","name":"Airoserver | Cloud Hosting Solutions","description":"Cloud server | Dedicated server | Domain | Hosting| SSL | Virtual server | Airoserver","publisher":{"@id":"https:\/\/airoserver.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/airoserver.com\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"de"},{"@type":"Organization","@id":"https:\/\/airoserver.com\/#organization","name":"Airoserver | Cloud Hosting Solutions","url":"https:\/\/airoserver.com\/","logo":{"@type":"ImageObject","inLanguage":"de","@id":"https:\/\/airoserver.com\/#\/schema\/logo\/image\/","url":"https:\/\/airoserver.com\/wp-content\/uploads\/2023\/09\/logo_airoserver.png","contentUrl":"https:\/\/airoserver.com\/wp-content\/uploads\/2023\/09\/logo_airoserver.png","width":925,"height":880,"caption":"Airoserver | Cloud Hosting Solutions"},"image":{"@id":"https:\/\/airoserver.com\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/airoserver.com\/#\/schema\/person\/98c9f3c9d2d2baaf929d2c4a53462e97","name":"Codinoob","image":{"@type":"ImageObject","inLanguage":"de","@id":"https:\/\/airoserver.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/016ea0daadd857a2718a67b0e8afc43ac449be1b2c2945db2414893811a00a97?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/016ea0daadd857a2718a67b0e8afc43ac449be1b2c2945db2414893811a00a97?s=96&d=mm&r=g","caption":"Codinoob"},"sameAs":["http:\/\/codinoob.ir"],"url":"https:\/\/airoserver.com\/de\/author\/codinoob\/"}]}},"_links":{"self":[{"href":"https:\/\/airoserver.com\/de\/wp-json\/wp\/v2\/posts\/37887","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/airoserver.com\/de\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/airoserver.com\/de\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/airoserver.com\/de\/wp-json\/wp\/v2\/users\/26"}],"replies":[{"embeddable":true,"href":"https:\/\/airoserver.com\/de\/wp-json\/wp\/v2\/comments?post=37887"}],"version-history":[{"count":0,"href":"https:\/\/airoserver.com\/de\/wp-json\/wp\/v2\/posts\/37887\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/airoserver.com\/de\/wp-json\/wp\/v2\/media\/37894"}],"wp:attachment":[{"href":"https:\/\/airoserver.com\/de\/wp-json\/wp\/v2\/media?parent=37887"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/airoserver.com\/de\/wp-json\/wp\/v2\/categories?post=37887"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/airoserver.com\/de\/wp-json\/wp\/v2\/tags?post=37887"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}