{"id":2515,"date":"2012-03-09T05:40:00","date_gmt":"2012-03-09T04:40:00","guid":{"rendered":"https:\/\/www.dbi-services.com\/blog\/configuration-of-tmpfs-on-sles-11-for-oracle-112-and-amm\/"},"modified":"2012-03-09T05:40:00","modified_gmt":"2012-03-09T04:40:00","slug":"configuration-of-tmpfs-on-sles-11-for-oracle-112-and-amm","status":"publish","type":"post","link":"https:\/\/www.dbi-services.com\/blog\/configuration-of-tmpfs-on-sles-11-for-oracle-112-and-amm\/","title":{"rendered":"Configuration of tmpfs on SLES 11 for Oracle 11.2 and AMM"},"content":{"rendered":"<p>Even if we (dbi services) usually advise to setup Oracle Enterprise Linux for Oracle deployments on Linux, it might appear that some customers still prefer other certified distributions such as SuSE Linux Enterprise Server (SLES). This post describes the configuration of the tmpfs filesystem size on SuSE Linux Enterprise Server 11.0 (SLES 11, without any service pack) in order to use the Oracle 11.2 Automatic Memory Management feature (AMM) through the Oracle instance parameter memory_target.<\/p>\n<p>In order to configure the MAA, let&#8217;s have a look at the documentation: http:\/\/download.oracle.com\/docs\/cd\/E11882_01\/install.112\/e24321\/pre_install.htm#autoId2<\/p>\n<p>We can see that the documentation focuses on OEL and Red Hat like systems which are slightly different on SuSE 11:<br \/>\nPer default on Linux, the tmpfs filesystem is sized to half of the server memory:<\/p>\n<p><span style=\"font-family: courier new,courier;\">server1:~ # <span style=\"color: #ff0000;\">free<\/span><\/span><br \/>\n<span style=\"font-family: courier new,courier;\">total\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 used\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 free\u00a0\u00a0\u00a0\u00a0 shared\u00a0\u00a0\u00a0 buffers\u00a0\u00a0\u00a0\u00a0 cached<\/span><br \/>\n<span style=\"font-family: courier new,courier;\">Mem:\u00a0\u00a0\u00a0\u00a0\u00a0 74100380\u00a0\u00a0\u00a0\u00a0 510908\u00a0\u00a0 73589472\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 9024\u00a0\u00a0\u00a0\u00a0 124608<\/span><\/p>\n<p><span style=\"font-family: courier new,courier;\">server1:~ # <span style=\"color: #ff0000;\">df -h \/dev\/shm\/<\/span><\/span><br \/>\n<span style=\"font-family: courier new,courier;\">Filesystem\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Size\u00a0 Used Avail Use% Mounted on<\/span><br \/>\n<span style=\"font-family: courier new,courier;\">udev\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 36G\u00a0 128K\u00a0\u00a0 36G\u00a0\u00a0 1% \/dev<\/span><\/p>\n<p>However, for a pure Oracle server it might be worth to increase this size, for instance on a server having 72 GB of memory, 50 GB might be allocated to the Oracle database.<\/p>\n<p>For this purpose, the size of the tmpfs must be explicitly set in the \/etc\/fstab. If not, starting the database with a larger size (memory_target) will result in the following error messages at startup:<\/p>\n<p>ORA-00845: MEMORY_TARGET not supported on this system<br \/>\nORA-01078: Failure in processing system parameters<\/p>\n<p>On SLES 11, in order to increase the tmpfs, we need to proceed differently as on Red Hat. Per default, the tmpfs filesystem is mounted through the following command in \/etc\/init.d\/boot.localfs:<\/p>\n<p><span style=\"font-family: courier new,courier; color: #ff0000;\">mount -fv -t tmpfs udev \/dev<\/span><\/p>\n<p>This mount results in the following output:<\/p>\n<p><span style=\"font-family: courier new,courier;\">server1:~ # <span style=\"color: #ff0000;\">df -h | grep udev<\/span><\/span><br \/>\n<span style=\"font-family: courier new,courier;\">udev\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 36G\u00a0 128K\u00a0\u00a0 36G\u00a0\u00a0 1% \/dev<\/span><\/p>\n<p>In contrary to the Oracle documentation (Red-Hat focused), we do not mount a &#8220;shmfs&#8221; device but a &#8220;udev&#8221; device on SLES. In order to mount this tmpfs filesystem with another size than half of the memory, for instance 50 GB, we need to adapt the \/etc\/fstab:<\/p>\n<p><span style=\"font-family: courier new,courier;\">udev\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 \/dev\/shm\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 tmpfs\u00a0\u00a0\u00a0\u00a0\u00a0 noauto,size=50g\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 0 0<\/span><\/p>\n<p>Note that \/dev\/shm has to be explicitely used, since the Oracle kernel checks (hard coded) for a mount point called \/dev\/shm on the filesystem. A missing \/dev\/shm will result in the following error while starting Oracle:<\/p>\n<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br \/>\n<span style=\"font-family: courier new,courier;\">WARNING: You are trying to use the MEMORY_TARGET feature. This feature requires the \/dev\/shm file system to be mounted for at least 10737418240 bytes. \/dev\/shm is either not mounted or is mounted with available space less than this size. Please fix this so that MEMORY_TARGET can work as expected. Current available is 0 and used is 0 bytes. Ensure that the mount point is \/dev\/shm for this directory.<\/span><br \/>\n<strong><span style=\"font-family: courier new,courier;\">memory_target needs larger \/dev\/shm<\/span><br \/>\n&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<\/strong><\/p>\n<p>We prevent the automatic mount (through umount\/mount -a) with the &#8220;noauto&#8221; parameter (see the fstab entry).<\/p>\n<p>For an immediate mount, we can use the &#8220;mount \/dev\/shm&#8221; command:<\/p>\n<p><span style=\"font-family: courier new,courier;\">server1:~ # <span style=\"color: #ff0000;\">mount \/dev\/shm<\/span><\/span><\/p>\n<p><span style=\"font-family: courier new,courier;\">server1:~ # <span style=\"color: #ff0000;\">df -h \/dev\/shm<\/span><\/span><br \/>\n<span style=\"font-family: courier new,courier;\">Filesystem\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Size\u00a0 Used Avail Use% Mounted on<\/span><br \/>\n<span style=\"font-family: courier new,courier;\">udev\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 50G\u00a0 128K\u00a0\u00a0 50G\u00a0\u00a0 1% \/dev<\/span><\/p>\n<p>The question now is how to make this change persistent. We decided to avoid changing the SuSE boot scripts, therefore we had to mount \/dev\/shm in the oracle boot procedure:<\/p>\n<p><span style=\"font-family: courier new,courier;\">server1:~ # <span style=\"color: #ff0000;\">cat \/etc\/init.d\/oracle.linux<\/span><\/span><\/p>\n<p><span style=\"font-family: courier new,courier;\">&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<\/span><br \/>\n<span style=\"font-family: courier new,courier;\">&#8230;.<\/span><br \/>\n<span style=\"font-family: courier new,courier;\">case &#8220;$1&#8221; in<\/span><br \/>\n<span style=\"font-family: courier new,courier;\">&#8216;start&#8217;)<\/span><\/p>\n<p><span style=\"font-family: courier new,courier;\">if [ $(mount | grep \/dev\/shm | wc -l) -lt 1 ]; then<\/span><br \/>\n<span style=\"font-family: courier new,courier;\">echo &#8220;$0 : mounting \/dev\/shm&#8221;<\/span><br \/>\n<span style=\"font-family: courier new,courier;\">mount \/dev\/shm<\/span><br \/>\n<span style=\"font-family: courier new,courier;\">ret=$?<\/span><br \/>\n<span style=\"font-family: courier new,courier;\">fi<\/span><\/p>\n<p><span style=\"font-family: courier new,courier;\">if [ ${ret} -ne 0 ]; then<\/span><br \/>\n<span style=\"font-family: courier new,courier;\">echo &#8220;error $0 : \/dev\/shm could not be mounted&#8221;<\/span><br \/>\n<span style=\"font-family: courier new,courier;\">exit 1<\/span><br \/>\n<span style=\"font-family: courier new,courier;\">fi<\/span><\/p>\n<p><span style=\"font-family: courier new,courier;\">su &#8211; oracle -c &#8220;${DMK_HOME:-\/u00\/app\/oracle\/local\/dmk}\/bin\/service_start_stop.ksh start&#8221;<\/span><br \/>\n<span style=\"font-family: courier new,courier;\">touch \/var\/lock\/subsys\/oracle<\/span><br \/>\n<span style=\"font-family: courier new,courier;\">;;<\/span><br \/>\n<span style=\"font-family: courier new,courier;\">&#8216;stop&#8217;)<\/span><br \/>\n<span style=\"font-family: courier new,courier;\">su &#8211; oracle -c &#8220;${DMK_HOME:-\/u00\/app\/oracle\/local\/dmk}\/bin\/service_start_stop.ksh stop&#8221;<\/span><br \/>\n<span style=\"font-family: courier new,courier;\">rm -f \/var\/lock\/subsys\/oracle<\/span><br \/>\n<span style=\"font-family: courier new,courier;\">;;<\/span><br \/>\n<span style=\"font-family: courier new,courier;\">*)<\/span><br \/>\n<span style=\"font-family: courier new,courier;\">echo &#8220;usage $0 {start|stop}&#8221;<\/span><br \/>\n&gt;<span style=\"font-family: courier new,courier;\">exit 1<\/span><br \/>\n<span style=\"font-family: courier new,courier;\">;;<\/span><br \/>\n<span style=\"font-family: courier new,courier;\">esac<\/span><br \/>\n<span style=\"font-family: courier new,courier;\">&#8230;.<\/span><br \/>\n<span style=\"font-family: courier new,courier;\">&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<\/span><\/p>\n<p>We also decided not to &#8220;unmount&#8221; the \/dev\/shm filesystem while stopping Oracle. As a result, this is what we see after reboot (and after an Oracle instance start):<\/p>\n<p><span style=\"font-family: courier new,courier;\">server1:~ # <span style=\"color: #ff0000;\">df -h \/dev\/shm<\/span><\/span><br \/>\n<span style=\"font-family: courier new,courier;\">Filesystem\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Size\u00a0 Used Avail Use% Mounted on<\/span><br \/>\n<span style=\"font-family: courier new,courier;\">udev\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 50G\u00a0\u00a0 29G\u00a0\u00a0 22G\u00a0 58% \/dev\/shm<\/span><\/p>\n<p>During our tests, we also tried to modify the \/etc\/init.d\/boot.localfs script in order to mount \/dev\/shm directly within this script. However, this prevented the network from being started correctly since SuSE itself uses tmpfs for \/dev during the boot. After the boot procedure, if \/dev\/shm is not used (mounted) by another process\/script, the following files remain available in \/dev\/shm :<\/p>\n<p><span style=\"font-family: courier new,courier;\">server1:~ # <span style=\"color: #ff0000;\">ls -lrt \/dev\/shm\/sysconfig\/<\/span><\/span><br \/>\n<span style=\"font-family: courier new,courier;\">total 28<\/span><br \/>\n<span style=\"font-family: courier new,courier;\">-rw-r&#8211;r&#8211; 1 root root\u00a0 5 Oct 24 15:52 network<\/span><br \/>\n<span style=\"font-family: courier new,courier;\">-rw-r&#8211;r&#8211; 1 root root\u00a0 3 Oct 24 15:52 config-lo<\/span><br \/>\n<span style=\"font-family: courier new,courier;\">-rw-r&#8211;r&#8211; 1 root root 27 Oct 24 15:52 if-lo<\/span><br \/>\n<span style=\"font-family: courier new,courier;\">-rw-r&#8211;r&#8211; 1 root root\u00a0 7 Oct 24 15:52 ifup-lo<\/span><br \/>\n<span style=\"font-family: courier new,courier;\">-rw-r&#8211;r&#8211; 1 root root\u00a0 5 Oct 24 15:52 config-eth0<\/span><br \/>\n<span style=\"font-family: courier new,courier;\">-rw-r&#8211;r&#8211; 1 root root 29 Oct 24 15:52 if-eth0<\/span><br \/>\n<span style=\"font-family: courier new,courier;\">-rw-r&#8211;r&#8211; 1 root root\u00a0 7 Oct 24 15:52 ifup-eth0<\/span><br \/>\n<span style=\"font-family: courier new,courier;\">drwxr-xr-x 2 root root 60 Oct 24 15:52 tmp<\/span><br \/>\n<span style=\"font-family: courier new,courier;\">-rw-r&#8211;r&#8211; 1 root root\u00a0 0 Oct 24 15:52 ready-lo<\/span><br \/>\n<span style=\"font-family: courier new,courier;\">-rw-r&#8211;r&#8211; 1 root root\u00a0 0 Oct 24 15:52 ready-eth0<\/span><br \/>\n<span style=\"font-family: courier new,courier;\">-rw-r&#8211;r&#8211; 1 root root\u00a0 0 Oct 24 15:52 ready-eth1<\/span><br \/>\n<span style=\"font-family: courier new,courier;\">-rw-r&#8211;r&#8211; 1 root root\u00a0 0 Oct 24 15:52 ready-eth2<\/span><br \/>\n<span style=\"font-family: courier new,courier;\">-rw-r&#8211;r&#8211; 1 root root\u00a0 0 Oct 24 15:52 ready-eth3<\/span><\/p>\n<p>After a correct \/dev\/shm configuration and after a reboot, the shm devices on SLES11 should be mounted and visible through:<\/p>\n<p><span style=\"font-family: courier new,courier;\">server1:~ # <span style=\"color: #ff0000;\">mount | grep shm<\/span><\/span><br \/>\n<span style=\"font-family: courier new,courier;\">udev on \/dev\/shm type tmpfs (rw,size=50g)<\/span><\/p>\n<p>Note that this information is also available on the Novell website and in the Oracle forum under:<\/p>\n<ul>\n<li>http:\/\/www.novell.com\/support\/viewContent.do?externalId=7006027&amp;sliceId=1<\/li>\n<li>https:\/\/forums.oracle.com\/forums\/thread.jspa?threadID=1040814<\/li>\n<\/ul>\n<p>Have fun using tmpfs and AMM under SuSE 11!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This post presents the configuration of the tmpfs filesystem size on  SLES 11 in order to use the Oracle 11.2 Automatic Memory Management  feature (AMM) through the Oracle instance parameter memory_target.<\/p>\n","protected":false},"author":9,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[198],"tags":[308,17,309],"type_dbi":[],"class_list":["post-2515","post","type-post","status-publish","format-standard","hentry","category-database-management","tag-automatic-memory-management","tag-oracle-11g","tag-suse"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.2 (Yoast SEO v27.2) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Configuration of tmpfs on SLES 11 for Oracle 11.2 and AMM - dbi Blog<\/title>\n<meta name=\"description\" content=\"This post describes the configuration of the tmpfs filesystem size on SuSE Linux Enterprise Server 11.0 (SLES 11, without any service pack) in order to use the Oracle 11.2 Automatic Memory Management feature (AMM) through the Oracle instance parameter memory_target.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.dbi-services.com\/blog\/configuration-of-tmpfs-on-sles-11-for-oracle-112-and-amm\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Configuration of tmpfs on SLES 11 for Oracle 11.2 and AMM\" \/>\n<meta property=\"og:description\" content=\"This post describes the configuration of the tmpfs filesystem size on SuSE Linux Enterprise Server 11.0 (SLES 11, without any service pack) in order to use the Oracle 11.2 Automatic Memory Management feature (AMM) through the Oracle instance parameter memory_target.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dbi-services.com\/blog\/configuration-of-tmpfs-on-sles-11-for-oracle-112-and-amm\/\" \/>\n<meta property=\"og:site_name\" content=\"dbi Blog\" \/>\n<meta property=\"article:published_time\" content=\"2012-03-09T04:40:00+00:00\" \/>\n<meta name=\"author\" content=\"Yann Neuhaus\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Yann Neuhaus\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/configuration-of-tmpfs-on-sles-11-for-oracle-112-and-amm\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/configuration-of-tmpfs-on-sles-11-for-oracle-112-and-amm\/\"},\"author\":{\"name\":\"Yann Neuhaus\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/5bfc203607127a4915b7950c4a108681\"},\"headline\":\"Configuration of tmpfs on SLES 11 for Oracle 11.2 and AMM\",\"datePublished\":\"2012-03-09T04:40:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/configuration-of-tmpfs-on-sles-11-for-oracle-112-and-amm\/\"},\"wordCount\":921,\"commentCount\":0,\"keywords\":[\"Automatic Memory Management\",\"Oracle 11g\",\"SuSE\"],\"articleSection\":[\"Database management\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/configuration-of-tmpfs-on-sles-11-for-oracle-112-and-amm\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/configuration-of-tmpfs-on-sles-11-for-oracle-112-and-amm\/\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/configuration-of-tmpfs-on-sles-11-for-oracle-112-and-amm\/\",\"name\":\"Configuration of tmpfs on SLES 11 for Oracle 11.2 and AMM - dbi Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\"},\"datePublished\":\"2012-03-09T04:40:00+00:00\",\"author\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/5bfc203607127a4915b7950c4a108681\"},\"description\":\"This post describes the configuration of the tmpfs filesystem size on SuSE Linux Enterprise Server 11.0 (SLES 11, without any service pack) in order to use the Oracle 11.2 Automatic Memory Management feature (AMM) through the Oracle instance parameter memory_target.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/configuration-of-tmpfs-on-sles-11-for-oracle-112-and-amm\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/configuration-of-tmpfs-on-sles-11-for-oracle-112-and-amm\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/configuration-of-tmpfs-on-sles-11-for-oracle-112-and-amm\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\/\/www.dbi-services.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Configuration of tmpfs on SLES 11 for Oracle 11.2 and AMM\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/\",\"name\":\"dbi Blog\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.dbi-services.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/5bfc203607127a4915b7950c4a108681\",\"name\":\"Yann Neuhaus\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/d2729b4bbf77b0fe6f6d2b9fb1b2686404c89a16ce2701e860bfd1406212f796?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/d2729b4bbf77b0fe6f6d2b9fb1b2686404c89a16ce2701e860bfd1406212f796?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/d2729b4bbf77b0fe6f6d2b9fb1b2686404c89a16ce2701e860bfd1406212f796?s=96&d=mm&r=g\",\"caption\":\"Yann Neuhaus\"},\"url\":\"https:\/\/www.dbi-services.com\/blog\/author\/yann-neuhaus\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Configuration of tmpfs on SLES 11 for Oracle 11.2 and AMM - dbi Blog","description":"This post describes the configuration of the tmpfs filesystem size on SuSE Linux Enterprise Server 11.0 (SLES 11, without any service pack) in order to use the Oracle 11.2 Automatic Memory Management feature (AMM) through the Oracle instance parameter memory_target.","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:\/\/www.dbi-services.com\/blog\/configuration-of-tmpfs-on-sles-11-for-oracle-112-and-amm\/","og_locale":"en_US","og_type":"article","og_title":"Configuration of tmpfs on SLES 11 for Oracle 11.2 and AMM","og_description":"This post describes the configuration of the tmpfs filesystem size on SuSE Linux Enterprise Server 11.0 (SLES 11, without any service pack) in order to use the Oracle 11.2 Automatic Memory Management feature (AMM) through the Oracle instance parameter memory_target.","og_url":"https:\/\/www.dbi-services.com\/blog\/configuration-of-tmpfs-on-sles-11-for-oracle-112-and-amm\/","og_site_name":"dbi Blog","article_published_time":"2012-03-09T04:40:00+00:00","author":"Yann Neuhaus","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Yann Neuhaus","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dbi-services.com\/blog\/configuration-of-tmpfs-on-sles-11-for-oracle-112-and-amm\/#article","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/configuration-of-tmpfs-on-sles-11-for-oracle-112-and-amm\/"},"author":{"name":"Yann Neuhaus","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/5bfc203607127a4915b7950c4a108681"},"headline":"Configuration of tmpfs on SLES 11 for Oracle 11.2 and AMM","datePublished":"2012-03-09T04:40:00+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/configuration-of-tmpfs-on-sles-11-for-oracle-112-and-amm\/"},"wordCount":921,"commentCount":0,"keywords":["Automatic Memory Management","Oracle 11g","SuSE"],"articleSection":["Database management"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbi-services.com\/blog\/configuration-of-tmpfs-on-sles-11-for-oracle-112-and-amm\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbi-services.com\/blog\/configuration-of-tmpfs-on-sles-11-for-oracle-112-and-amm\/","url":"https:\/\/www.dbi-services.com\/blog\/configuration-of-tmpfs-on-sles-11-for-oracle-112-and-amm\/","name":"Configuration of tmpfs on SLES 11 for Oracle 11.2 and AMM - dbi Blog","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/#website"},"datePublished":"2012-03-09T04:40:00+00:00","author":{"@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/5bfc203607127a4915b7950c4a108681"},"description":"This post describes the configuration of the tmpfs filesystem size on SuSE Linux Enterprise Server 11.0 (SLES 11, without any service pack) in order to use the Oracle 11.2 Automatic Memory Management feature (AMM) through the Oracle instance parameter memory_target.","breadcrumb":{"@id":"https:\/\/www.dbi-services.com\/blog\/configuration-of-tmpfs-on-sles-11-for-oracle-112-and-amm\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbi-services.com\/blog\/configuration-of-tmpfs-on-sles-11-for-oracle-112-and-amm\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbi-services.com\/blog\/configuration-of-tmpfs-on-sles-11-for-oracle-112-and-amm\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.dbi-services.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Configuration of tmpfs on SLES 11 for Oracle 11.2 and AMM"}]},{"@type":"WebSite","@id":"https:\/\/www.dbi-services.com\/blog\/#website","url":"https:\/\/www.dbi-services.com\/blog\/","name":"dbi Blog","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.dbi-services.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/5bfc203607127a4915b7950c4a108681","name":"Yann Neuhaus","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/d2729b4bbf77b0fe6f6d2b9fb1b2686404c89a16ce2701e860bfd1406212f796?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/d2729b4bbf77b0fe6f6d2b9fb1b2686404c89a16ce2701e860bfd1406212f796?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d2729b4bbf77b0fe6f6d2b9fb1b2686404c89a16ce2701e860bfd1406212f796?s=96&d=mm&r=g","caption":"Yann Neuhaus"},"url":"https:\/\/www.dbi-services.com\/blog\/author\/yann-neuhaus\/"}]}},"_links":{"self":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/2515","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/users\/9"}],"replies":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/comments?post=2515"}],"version-history":[{"count":0,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/2515\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media?parent=2515"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/categories?post=2515"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/tags?post=2515"},{"taxonomy":"type","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/type_dbi?post=2515"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}