{"id":77656,"date":"2025-09-22T20:39:41","date_gmt":"2025-09-22T19:39:41","guid":{"rendered":"https:\/\/serviceexpress.com\/uk\/?p=77656"},"modified":"2025-09-22T20:39:42","modified_gmt":"2025-09-22T19:39:42","slug":"why-you-should-avoid-sharing-the-qdls-directory-in-netserver","status":"publish","type":"post","link":"https:\/\/serviceexpress.com\/uk\/resources\/why-you-should-avoid-sharing-the-qdls-directory-in-netserver\/","title":{"rendered":"Why you should avoid sharing the \/QDLS directory in NetServer"},"content":{"rendered":"\n<div class=\"wp-block-group is-layout-constrained wp-block-group-is-layout-constrained\">\n<p>Many IBM i installations use the operating system\u2019s NetServer facility to present directories in their system\u2019s IFS as standard SMB file shares on their network. These shares can be accessed by Windows client PCs and any other SMB clients that may need to access IFS directories. While it\u2019s common for customers to have a share directly on the \/QDLS folder, many don\u2019t know that directly accessing files in \/QDLS via a standard NetServer file share can be problematic.<\/p>\n<\/div>\n\n\n\n<div class=\"wp-block-group is-layout-constrained wp-block-group-is-layout-constrained\">\n<h2 class=\"wp-block-heading\" id=\"h-why-isn-t-sharing-qdls-as-a-netserver-file-share-a-good-idea\">Why isn\u2019t sharing \/QDLS as a NetServer file share a good idea?<\/h2>\n\n\n\n<p>Multithreading. NetServer is shipped as a multithreaded facility by default for optimal performance. Because \/QDLS is an ancient directory technology that can\u2019t support multithreading, any file share connections to \/QDLS must be single-threaded.<\/p>\n\n\n\n<p>Suppose an SMB client (e.g., a Windows PC) makes its initial SMB connection to the system via a share on \/QDLS. The NetServer server-side connection will be a single-threaded job, and any additional accesses to other IFS directories, outside of \/QDLS, will also funnel through that single-threaded connection.<\/p>\n\n\n\n<p>Suppose an SMB client makes its initial SMB connection to the system via a share on a normal IFS share (\u201cnormal\u201d is a share on a directory outside of \/QDLS). The NetServer server-side connection will be a multithreaded job, and any requests to access \/QDLS after that initial connection will fail. Therein lies the fundamental problem with \/QDLS NetServer shares.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-how-do-you-avoid-connectivity-issues-with-shares-on-qdls\">How do you avoid connectivity issues with shares on \/QDLS?<\/h3>\n\n\n\n<p>The best practice approach is not to have a share on \/QDLS in the first place. Suppose you have code running on your system that requires using the \/QDLS folder. For example, you may have a population of old applications that execute CPYTOPCD commands to create ASCII files of database files in \/QDLS. A good workaround is to use the \/QDLS folder, but after you place files there, have your application move those files from \/QDLS to a standard IFS directory outside of \/QDLS. This allows the directory to be accessed via its own SMB share that a multithreaded connection on the server side will service.<\/p>\n\n\n\n<p>If you <em>must<\/em> continue to use a share on \/QDLS for whatever technical\/application reasons and you\u2019re experiencing the \/QDLS connectivity issue described above, another approach \u2014 albeit not recommended for performance degradation reasons \u2014 is to configure your system to only use single-threaded server-side SMB connections with NetServer.<\/p>\n\n\n\n<p>This approach ensures that client-side connections to a \/QDLS share will always work because a single-threaded job on the system will always service the client\u2019s connection attempts. Still, it\u2019ll impact your system&#8217;s overall performance of IFS file shares. Single-threaded sessions that support file systems like \/QDLS that aren\u2019t thread safe are handled by prestart job <strong>QZLSFILE<\/strong>, and multi-threaded sessions that support file systems except \/QDLS are handled by prestart job <strong>QZLSFILET<\/strong>. To force all SMB client connections to be single-threaded, you need to remove the <strong>QZLSFILET<\/strong> prestart job entry from subsystem QSERVER using these steps:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>End NetServer: <strong>ENDTCPSVR SERVER(*NETSVR)<\/strong><\/li>\n\n\n\n<li>End the QZLSFILET prestart job: <strong>ENDPJ SBS(QSERVER) PGM(QZLSFILET) OPTION(*IMMED)<\/strong><\/li>\n\n\n\n<li>Remove the QZLSFILET prestart job entry: <strong>RMVPJE SBSD(QSERVER) PGM(QZLSFILET)<\/strong><\/li>\n\n\n\n<li>Restart NetServer: <strong>STRTCPSVR SERVER(*NETSVR)<\/strong><\/li>\n<\/ol>\n\n\n\n<p>NetServer will now use only the QZLSFILE prestart jobs (single-threaded) for all SMB client connections. Because the multi-threaded prestart job QZLSFILET entry was removed from the QSERVER subsystem, the QZLSFILET job cannot start when NetServer is restarted. Thus, all SMB connections will be forced into single-threaded connections, and \/QDLS connection failures should no longer occur.<\/p>\n\n\n\n<p>If you need to re-enable multithreading for NetServer SMB connections, then execute these steps:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Add the QZLSFILET prestart job entry back to subsystem QSERVER: <strong>ADDPJE SBSD(QSYS\/QSERVER) PGM(QSYS\/QZLSFILET) STRJOBS(*NO) INLJOBS(1) THRESHOLD(1) ADLJOBS(0) MAXJOBS(*NOMAX) JOBD(QSYS\/QZLSPJ) MAXUSE(1) CLS(QSYS\/QPWFSERVER)<\/strong><\/li>\n\n\n\n<li>Start the QZLSFILET prestart job: <strong>STRPJ SBS(QSERVER) PGM(QZLSFILET)<\/strong><\/li>\n<\/ol>\n\n\n\n<p>Many shops still use the \/QDLS directory in their application\/processing environments; however, sharing the \/QDLS directory using NetServer has some caveats, and hopefully, you now have some good insight into what those may be.<\/p>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>It\u2019s common to have a share directly on the \/QDLS folder. However, accessing files in \/QDLS via a standard NetServer file share can be problematic \u2014 learn why.<\/p>\n","protected":false},"author":87,"featured_media":77657,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"ep_exclude_from_search":false,"freeform":false,"hero_image_id":77659,"show_author":true,"table_of_contents":[{"id":"1df30b73-48e7-4627-bf13-ae9b3362d8b2","level":"2","title":"Why isn\u2019t sharing \/QDLS as a NetServer file share a good idea?","url":"h-why-isn-t-sharing-qdls-as-a-netserver-file-share-a-good-idea"},{"id":"f300ff07-6cdf-4346-a10f-5db2dd596138","level":"3","title":"How do you avoid connectivity issues with shares on \/QDLS?","url":"h-how-do-you-avoid-connectivity-issues-with-shares-on-qdls"}],"footnotes":""},"categories":[735],"tags":[],"resource":[716],"class_list":["post-77656","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-ibm","resource-blogs"],"featured_image_src":"https:\/\/serviceexpress.com\/uk\/wp-content\/uploads\/sites\/5\/2025\/09\/qlds_netserver_meta.jpg","yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.5 (Yoast SEO v27.5) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Why you should avoid sharing the \/QDLS directory in NetServer | Service Express<\/title>\n<meta name=\"description\" content=\"It\u2019s common to have a share directly on the \/QDLS folder. However, accessing files in \/QDLS via a standard NetServer file share can be problematic \u2014 learn why.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/serviceexpress.com\/uk\/resources\/why-you-should-avoid-sharing-the-qdls-directory-in-netserver\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Why you should avoid sharing the \/QDLS directory in NetServer | Service Express\" \/>\n<meta property=\"og:description\" content=\"It\u2019s common to have a share directly on the \/QDLS folder. However, accessing files in \/QDLS via a standard NetServer file share can be problematic \u2014 learn why.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/serviceexpress.com\/uk\/resources\/why-you-should-avoid-sharing-the-qdls-directory-in-netserver\/\" \/>\n<meta property=\"og:site_name\" content=\"Service Express UK\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/weareserviceexpress\/\" \/>\n<meta property=\"article:published_time\" content=\"2025-09-22T19:39:41+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-09-22T19:39:42+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/serviceexpress.com\/uk\/wp-content\/uploads\/sites\/5\/2025\/09\/qlds_netserver_meta.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"628\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Marc Vadeboncoeur\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@ServiceExpress\" \/>\n<meta name=\"twitter:site\" content=\"@ServiceExpress\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Marc Vadeboncoeur\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/serviceexpress.com\\\/uk\\\/resources\\\/why-you-should-avoid-sharing-the-qdls-directory-in-netserver\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/serviceexpress.com\\\/uk\\\/resources\\\/why-you-should-avoid-sharing-the-qdls-directory-in-netserver\\\/\"},\"author\":{\"name\":\"Marc Vadeboncoeur\",\"@id\":\"https:\\\/\\\/serviceexpress.com\\\/uk\\\/#\\\/schema\\\/person\\\/a8450d23954d446ada9bb6d939be4199\"},\"headline\":\"Why you should avoid sharing the \\\/QDLS directory in NetServer\",\"datePublished\":\"2025-09-22T19:39:41+00:00\",\"dateModified\":\"2025-09-22T19:39:42+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/serviceexpress.com\\\/uk\\\/resources\\\/why-you-should-avoid-sharing-the-qdls-directory-in-netserver\\\/\"},\"wordCount\":689,\"publisher\":{\"@id\":\"https:\\\/\\\/serviceexpress.com\\\/uk\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/serviceexpress.com\\\/uk\\\/resources\\\/why-you-should-avoid-sharing-the-qdls-directory-in-netserver\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/serviceexpress.com\\\/uk\\\/wp-content\\\/uploads\\\/sites\\\/5\\\/2025\\\/09\\\/qlds_netserver_meta.jpg\",\"articleSection\":[\"IBM\"],\"inLanguage\":\"en-GB\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/serviceexpress.com\\\/uk\\\/resources\\\/why-you-should-avoid-sharing-the-qdls-directory-in-netserver\\\/\",\"url\":\"https:\\\/\\\/serviceexpress.com\\\/uk\\\/resources\\\/why-you-should-avoid-sharing-the-qdls-directory-in-netserver\\\/\",\"name\":\"Why you should avoid sharing the \\\/QDLS directory in NetServer | Service Express\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/serviceexpress.com\\\/uk\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/serviceexpress.com\\\/uk\\\/resources\\\/why-you-should-avoid-sharing-the-qdls-directory-in-netserver\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/serviceexpress.com\\\/uk\\\/resources\\\/why-you-should-avoid-sharing-the-qdls-directory-in-netserver\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/serviceexpress.com\\\/uk\\\/wp-content\\\/uploads\\\/sites\\\/5\\\/2025\\\/09\\\/qlds_netserver_meta.jpg\",\"datePublished\":\"2025-09-22T19:39:41+00:00\",\"dateModified\":\"2025-09-22T19:39:42+00:00\",\"description\":\"It\u2019s common to have a share directly on the \\\/QDLS folder. However, accessing files in \\\/QDLS via a standard NetServer file share can be problematic \u2014 learn why.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/serviceexpress.com\\\/uk\\\/resources\\\/why-you-should-avoid-sharing-the-qdls-directory-in-netserver\\\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/serviceexpress.com\\\/uk\\\/resources\\\/why-you-should-avoid-sharing-the-qdls-directory-in-netserver\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/serviceexpress.com\\\/uk\\\/resources\\\/why-you-should-avoid-sharing-the-qdls-directory-in-netserver\\\/#primaryimage\",\"url\":\"https:\\\/\\\/serviceexpress.com\\\/uk\\\/wp-content\\\/uploads\\\/sites\\\/5\\\/2025\\\/09\\\/qlds_netserver_meta.jpg\",\"contentUrl\":\"https:\\\/\\\/serviceexpress.com\\\/uk\\\/wp-content\\\/uploads\\\/sites\\\/5\\\/2025\\\/09\\\/qlds_netserver_meta.jpg\",\"width\":1200,\"height\":628,\"caption\":\"An image of a torso with a stylus interacting with a graphic\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/serviceexpress.com\\\/uk\\\/resources\\\/why-you-should-avoid-sharing-the-qdls-directory-in-netserver\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/serviceexpress.com\\\/uk\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Resources\",\"item\":\"https:\\\/\\\/serviceexpress.com\\\/uk\\\/resources\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Why you should avoid sharing the \\\/QDLS directory in NetServer\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/serviceexpress.com\\\/uk\\\/#website\",\"url\":\"https:\\\/\\\/serviceexpress.com\\\/uk\\\/\",\"name\":\"Service Express UK\",\"description\":\"Global Data Center Solutions &amp; Support\",\"publisher\":{\"@id\":\"https:\\\/\\\/serviceexpress.com\\\/uk\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/serviceexpress.com\\\/uk\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/serviceexpress.com\\\/uk\\\/#organization\",\"name\":\"Service Express UK\",\"url\":\"https:\\\/\\\/serviceexpress.com\\\/uk\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/serviceexpress.com\\\/uk\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/serviceexpress.com\\\/uk\\\/wp-content\\\/uploads\\\/sites\\\/5\\\/2022\\\/01\\\/service-express-meta.jpg\",\"contentUrl\":\"https:\\\/\\\/serviceexpress.com\\\/uk\\\/wp-content\\\/uploads\\\/sites\\\/5\\\/2022\\\/01\\\/service-express-meta.jpg\",\"width\":1200,\"height\":628,\"caption\":\"Service Express UK\"},\"image\":{\"@id\":\"https:\\\/\\\/serviceexpress.com\\\/uk\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/weareserviceexpress\\\/\",\"https:\\\/\\\/x.com\\\/ServiceExpress\",\"https:\\\/\\\/www.instagram.com\\\/serviceexpress\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/service-express-inc\\\/\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCa1MO2iHOytlWx_xCX9uoug\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/serviceexpress.com\\\/uk\\\/#\\\/schema\\\/person\\\/a8450d23954d446ada9bb6d939be4199\",\"name\":\"Marc Vadeboncoeur\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/6ff9679fa80e3b683465f453ddef2ed2c51c0f808536184e290dfddda959757d?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/6ff9679fa80e3b683465f453ddef2ed2c51c0f808536184e290dfddda959757d?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/6ff9679fa80e3b683465f453ddef2ed2c51c0f808536184e290dfddda959757d?s=96&r=g\",\"caption\":\"Marc Vadeboncoeur\"},\"description\":\"Marc is an IBM i expert with decades of experience in software development, IT leadership and systems design for manufacturing and healthcare.\",\"sameAs\":[\"https:\\\/\\\/www.linkedin.com\\\/in\\\/marc-vadeboncoeur-31813312\\\/\"],\"jobTitle\":\"IBM i Senior System Administrator\",\"url\":\"https:\\\/\\\/serviceexpress.com\\\/uk\\\/author\\\/marcvadeboncoeur\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Why you should avoid sharing the \/QDLS directory in NetServer | Service Express","description":"It\u2019s common to have a share directly on the \/QDLS folder. However, accessing files in \/QDLS via a standard NetServer file share can be problematic \u2014 learn why.","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:\/\/serviceexpress.com\/uk\/resources\/why-you-should-avoid-sharing-the-qdls-directory-in-netserver\/","og_locale":"en_GB","og_type":"article","og_title":"Why you should avoid sharing the \/QDLS directory in NetServer | Service Express","og_description":"It\u2019s common to have a share directly on the \/QDLS folder. However, accessing files in \/QDLS via a standard NetServer file share can be problematic \u2014 learn why.","og_url":"https:\/\/serviceexpress.com\/uk\/resources\/why-you-should-avoid-sharing-the-qdls-directory-in-netserver\/","og_site_name":"Service Express UK","article_publisher":"https:\/\/www.facebook.com\/weareserviceexpress\/","article_published_time":"2025-09-22T19:39:41+00:00","article_modified_time":"2025-09-22T19:39:42+00:00","og_image":[{"width":1200,"height":628,"url":"https:\/\/serviceexpress.com\/uk\/wp-content\/uploads\/sites\/5\/2025\/09\/qlds_netserver_meta.jpg","type":"image\/jpeg"}],"author":"Marc Vadeboncoeur","twitter_card":"summary_large_image","twitter_creator":"@ServiceExpress","twitter_site":"@ServiceExpress","twitter_misc":{"Written by":"Marc Vadeboncoeur","Estimated reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/serviceexpress.com\/uk\/resources\/why-you-should-avoid-sharing-the-qdls-directory-in-netserver\/#article","isPartOf":{"@id":"https:\/\/serviceexpress.com\/uk\/resources\/why-you-should-avoid-sharing-the-qdls-directory-in-netserver\/"},"author":{"name":"Marc Vadeboncoeur","@id":"https:\/\/serviceexpress.com\/uk\/#\/schema\/person\/a8450d23954d446ada9bb6d939be4199"},"headline":"Why you should avoid sharing the \/QDLS directory in NetServer","datePublished":"2025-09-22T19:39:41+00:00","dateModified":"2025-09-22T19:39:42+00:00","mainEntityOfPage":{"@id":"https:\/\/serviceexpress.com\/uk\/resources\/why-you-should-avoid-sharing-the-qdls-directory-in-netserver\/"},"wordCount":689,"publisher":{"@id":"https:\/\/serviceexpress.com\/uk\/#organization"},"image":{"@id":"https:\/\/serviceexpress.com\/uk\/resources\/why-you-should-avoid-sharing-the-qdls-directory-in-netserver\/#primaryimage"},"thumbnailUrl":"https:\/\/serviceexpress.com\/uk\/wp-content\/uploads\/sites\/5\/2025\/09\/qlds_netserver_meta.jpg","articleSection":["IBM"],"inLanguage":"en-GB"},{"@type":"WebPage","@id":"https:\/\/serviceexpress.com\/uk\/resources\/why-you-should-avoid-sharing-the-qdls-directory-in-netserver\/","url":"https:\/\/serviceexpress.com\/uk\/resources\/why-you-should-avoid-sharing-the-qdls-directory-in-netserver\/","name":"Why you should avoid sharing the \/QDLS directory in NetServer | Service Express","isPartOf":{"@id":"https:\/\/serviceexpress.com\/uk\/#website"},"primaryImageOfPage":{"@id":"https:\/\/serviceexpress.com\/uk\/resources\/why-you-should-avoid-sharing-the-qdls-directory-in-netserver\/#primaryimage"},"image":{"@id":"https:\/\/serviceexpress.com\/uk\/resources\/why-you-should-avoid-sharing-the-qdls-directory-in-netserver\/#primaryimage"},"thumbnailUrl":"https:\/\/serviceexpress.com\/uk\/wp-content\/uploads\/sites\/5\/2025\/09\/qlds_netserver_meta.jpg","datePublished":"2025-09-22T19:39:41+00:00","dateModified":"2025-09-22T19:39:42+00:00","description":"It\u2019s common to have a share directly on the \/QDLS folder. However, accessing files in \/QDLS via a standard NetServer file share can be problematic \u2014 learn why.","breadcrumb":{"@id":"https:\/\/serviceexpress.com\/uk\/resources\/why-you-should-avoid-sharing-the-qdls-directory-in-netserver\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/serviceexpress.com\/uk\/resources\/why-you-should-avoid-sharing-the-qdls-directory-in-netserver\/"]}]},{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/serviceexpress.com\/uk\/resources\/why-you-should-avoid-sharing-the-qdls-directory-in-netserver\/#primaryimage","url":"https:\/\/serviceexpress.com\/uk\/wp-content\/uploads\/sites\/5\/2025\/09\/qlds_netserver_meta.jpg","contentUrl":"https:\/\/serviceexpress.com\/uk\/wp-content\/uploads\/sites\/5\/2025\/09\/qlds_netserver_meta.jpg","width":1200,"height":628,"caption":"An image of a torso with a stylus interacting with a graphic"},{"@type":"BreadcrumbList","@id":"https:\/\/serviceexpress.com\/uk\/resources\/why-you-should-avoid-sharing-the-qdls-directory-in-netserver\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/serviceexpress.com\/uk\/"},{"@type":"ListItem","position":2,"name":"Resources","item":"https:\/\/serviceexpress.com\/uk\/resources\/"},{"@type":"ListItem","position":3,"name":"Why you should avoid sharing the \/QDLS directory in NetServer"}]},{"@type":"WebSite","@id":"https:\/\/serviceexpress.com\/uk\/#website","url":"https:\/\/serviceexpress.com\/uk\/","name":"Service Express UK","description":"Global Data Center Solutions &amp; Support","publisher":{"@id":"https:\/\/serviceexpress.com\/uk\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/serviceexpress.com\/uk\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":"Organization","@id":"https:\/\/serviceexpress.com\/uk\/#organization","name":"Service Express UK","url":"https:\/\/serviceexpress.com\/uk\/","logo":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/serviceexpress.com\/uk\/#\/schema\/logo\/image\/","url":"https:\/\/serviceexpress.com\/uk\/wp-content\/uploads\/sites\/5\/2022\/01\/service-express-meta.jpg","contentUrl":"https:\/\/serviceexpress.com\/uk\/wp-content\/uploads\/sites\/5\/2022\/01\/service-express-meta.jpg","width":1200,"height":628,"caption":"Service Express UK"},"image":{"@id":"https:\/\/serviceexpress.com\/uk\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/weareserviceexpress\/","https:\/\/x.com\/ServiceExpress","https:\/\/www.instagram.com\/serviceexpress\/","https:\/\/www.linkedin.com\/company\/service-express-inc\/","https:\/\/www.youtube.com\/channel\/UCa1MO2iHOytlWx_xCX9uoug"]},{"@type":"Person","@id":"https:\/\/serviceexpress.com\/uk\/#\/schema\/person\/a8450d23954d446ada9bb6d939be4199","name":"Marc Vadeboncoeur","image":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/secure.gravatar.com\/avatar\/6ff9679fa80e3b683465f453ddef2ed2c51c0f808536184e290dfddda959757d?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/6ff9679fa80e3b683465f453ddef2ed2c51c0f808536184e290dfddda959757d?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/6ff9679fa80e3b683465f453ddef2ed2c51c0f808536184e290dfddda959757d?s=96&r=g","caption":"Marc Vadeboncoeur"},"description":"Marc is an IBM i expert with decades of experience in software development, IT leadership and systems design for manufacturing and healthcare.","sameAs":["https:\/\/www.linkedin.com\/in\/marc-vadeboncoeur-31813312\/"],"jobTitle":"IBM i Senior System Administrator","url":"https:\/\/serviceexpress.com\/uk\/author\/marcvadeboncoeur\/"}]}},"_links":{"self":[{"href":"https:\/\/serviceexpress.com\/uk\/wp-json\/wp\/v2\/posts\/77656","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/serviceexpress.com\/uk\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/serviceexpress.com\/uk\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/serviceexpress.com\/uk\/wp-json\/wp\/v2\/users\/87"}],"replies":[{"embeddable":true,"href":"https:\/\/serviceexpress.com\/uk\/wp-json\/wp\/v2\/comments?post=77656"}],"version-history":[{"count":0,"href":"https:\/\/serviceexpress.com\/uk\/wp-json\/wp\/v2\/posts\/77656\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/serviceexpress.com\/uk\/wp-json\/wp\/v2\/media\/77657"}],"wp:attachment":[{"href":"https:\/\/serviceexpress.com\/uk\/wp-json\/wp\/v2\/media?parent=77656"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/serviceexpress.com\/uk\/wp-json\/wp\/v2\/categories?post=77656"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/serviceexpress.com\/uk\/wp-json\/wp\/v2\/tags?post=77656"},{"taxonomy":"resource","embeddable":true,"href":"https:\/\/serviceexpress.com\/uk\/wp-json\/wp\/v2\/resource?post=77656"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}