Install NFS Client on Debian/Ubuntu
Missing NFS client support?
# apt-get install nfs-common portmap
Missing NFS client support?
# apt-get install nfs-common portmap
I've run into another caveat of my SHM/tmpfs File-Based PHP Cache/Datastore in RAM technique. Fortunately, this one is much better documented than the subject of A Funny Thing Happened on the way to 100% Full tmpfs. On a 2GB tmpfs used storage halted at 51%
# df Filesystem 1K-blocks Used Available Use% Mounted on none 2097152 1062212 1034940 51% /mnt/ram
And the number of files stopped increasing at
# ls | wc -l 174196
Knowing that tmpfs isn't a file-system in the true sense of the term and therefore should not be subject to limitations like directory size I had a hunch it had run out of inodes.
# df -i Filesystem Inodes IUsed IFree IUse% Mounted on none 174206 174206 0 100% /mnt/ram
As it turns out
The default [number of inodes] is half of the number of your physical RAM pages
We can either adjust the nr_inodes mount option to override this default or set it to 0 to remove this limitation altogether.
# mount -o remount,nr_inodes=0 /mnt/ram
Now when we look at our inode statistics:
# df -i Filesystem Inodes IUsed IFree IUse% Mounted on none 0 0 0 - /mnt/ram
From /usr/src/linux/Documentation/filesystems/tmpfs.txt:
Tmpfs is a file system which keeps all files in virtual memory. Everything in tmpfs is temporary in the sense that no files will be created on your hard drive. If you unmount a tmpfs instance, everything stored therein is lost. tmpfs puts everything into the kernel internal caches and grows and shrinks to accommodate the files it contains and is able to swap unneeded pages out to swap space. It has maximum size limits which can be adjusted on the fly via 'mount -o remount ...' If you compare it to ramfs (which was the template to create tmpfs) you gain swapping and limit checking. Another similar thing is the RAM disk (/dev/ram*), which simulates a fixed size hard disk in physical RAM, where you have to create an ordinary filesystem on top. Ramdisks cannot swap and you do not have the possibility to resize them. Since tmpfs lives completely in the page cache and on swap, all tmpfs pages currently in memory will show up as cached. It will not show up as shared or something like that. Further on you can check the actual RAM+swap use of a tmpfs instance with df(1) and du(1). tmpfs has the following uses: 1) There is always a kernel internal mount which you will not see at all. This is used for shared anonymous mappings and SYSV shared memory. This mount does not depend on CONFIG_TMPFS. If CONFIG_TMPFS is not set, the user visible part of tmpfs is not build. But the internal mechanisms are always present. 2) glibc 2.2 and above expects tmpfs to be mounted at /dev/shm for POSIX shared memory (shm_open, shm_unlink). Adding the following line to /etc/fstab should take care of this: tmpfs /dev/shm tmpfs defaults 0 0 Remember to create the directory that you intend to mount tmpfs on if necessary. This mount is _not_ needed for SYSV shared memory. The internal mount is used for that. (In the 2.3 kernel versions it was necessary to mount the predecessor of tmpfs (shm fs) to use SYSV shared memory) 3) Some people (including me) find it very convenient to mount it e.g. on /tmp and /var/tmp and have a big swap partition. And now loop mounts of tmpfs files do work, so mkinitrd shipped by most distributions should succeed with a tmpfs /tmp. 4) And probably a lot more I do not know about :-) tmpfs has three mount options for sizing: size: The limit of allocated bytes for this tmpfs instance. The default is half of your physical RAM without swap. If you oversize your tmpfs instances the machine will deadlock since the OOM handler will not be able to free that memory. nr_blocks: The same as size, but in blocks of PAGE_CACHE_SIZE. nr_inodes: The maximum number of inodes for this instance. The default is half of the number of your physical RAM pages, or (on a machine with highmem) the number of lowmem RAM pages, whichever is the lower. These parameters accept a suffix k, m or g for kilo, mega and giga and can be changed on remount. The size parameter also accepts a suffix % to limit this tmpfs instance to that percentage of your physical RAM: the default, when neither size nor nr_blocks is specified, is size=50% If nr_blocks=0 (or size=0), blocks will not be limited in that instance; if nr_inodes=0, inodes will not be limited. It is generally unwise to mount with such options, since it allows any user with write access to use up all the memory on the machine; but enhances the scalability of that instance in a system with many cpus making intensive use of it. tmpfs has a mount option to set the NUMA memory allocation policy for all files in that instance (if CONFIG_NUMA is enabled) - which can be adjusted on the fly via 'mount -o remount ...' mpol=default use the process allocation policy (see set_mempolicy(2)) mpol=prefer:Node prefers to allocate memory from the given Node mpol=bind:NodeList allocates memory only from nodes in NodeList mpol=interleave prefers to allocate from each node in turn mpol=interleave:NodeList allocates from each node of NodeList in turn mpol=local prefers to allocate memory from the local node NodeList format is a comma-separated list of decimal numbers and ranges, a range being two hyphen-separated decimal numbers, the smallest and largest node numbers in the range. For example, mpol=bind:0-3,5,7,9-15 A memory policy with a valid NodeList will be saved, as specified, for use at file creation time. When a task allocates a file in the file system, the mount option memory policy will be applied with a NodeList, if any, modified by the calling task's cpuset constraints [See Documentation/cgroups/cpusets.txt] and any optional flags, listed below. If the resulting NodeLists is the empty set, the effective memory policy for the file will revert to "default" policy. NUMA memory allocation policies have optional flags that can be used in conjunction with their modes. These optional flags can be specified when tmpfs is mounted by appending them to the mode before the NodeList. See Documentation/vm/numa_memory_policy.txt for a list of all available memory allocation policy mode flags and their effect on memory policy. =static is equivalent to MPOL_F_STATIC_NODES =relative is equivalent to MPOL_F_RELATIVE_NODES For example, mpol=bind=static:NodeList, is the equivalent of an allocation policy of MPOL_BIND | MPOL_F_STATIC_NODES. Note that trying to mount a tmpfs with an mpol option will fail if the running kernel does not support NUMA; and will fail if its nodelist specifies a node which is not online. If your system relies on that tmpfs being mounted, but from time to time runs a kernel built without NUMA capability (perhaps a safe recovery kernel), or with fewer nodes online, then it is advisable to omit the mpol option from automatic mount options. It can be added later, when the tmpfs is already mounted on MountPoint, by 'mount -o remount,mpol=Policy:NodeList MountPoint'. To specify the initial root directory you can use the following mount options: mode: The permissions as an octal number uid: The user id gid: The group id These options do not have any effect on remount. You can change these parameters with chmod(1), chown(1) and chgrp(1) on a mounted filesystem. So 'mount -t tmpfs -o size=10G,nr_inodes=10k,mode=700 tmpfs /mytmpfs' will give you tmpfs instance on /mytmpfs which can allocate 10GB RAM/SWAP in 10240 inodes and it is only accessible by root. Author: Christoph Rohland <[email protected]>, 1.12.01 Updated: Hugh Dickins, 4 June 2007 Updated: KOSAKI Motohiro, 16 Mar 2010
After doing a host name change on a Zimbra appliance the domain was locked. Error messages included:
Webmail:
This account is currently in maintenance mode
Admin FE
The domain is temporarily locked by the server. You will not be able to make any changes to the domain until the internal lock is removed.
zmprov
ERROR: service.PERM_DENIED (permission denied: can not access domain, domain is in shutdown status)
Unfotunately, it's not possible to change the status in the Admin FE. You're going to have to either use ldapmodify, or if you're ldap-squeamish like me phpldapadmin.
I went through maybe two dozen bellyaching forum threads complaining about this problem and how no one has come up with a solution until I found this article at http://www.zoobey.com/index.php/resources/all-articles-list/430-zimbra-rename-domain-fix:
You may have to run this multiple times for every 1000 users because of a java/zimbra bug. After it you are left with both domains in shutdown mode and having a rename status. These are store in openldap. Below is method to fix it. This is for zimbra 6.0+ - I did it on 7.1.3. BE REALLY CAREFUL AND BACKUP AS YOU CAN MESS STUFF UP Easily.
First, backup your entire /opt/zimbra is recommended and at least your ldap
openldap backup
su - zimbra
/opt/zimbra/libexec/zmslapcat /tmp/backupdownload phpldapadmin (you can do this using ldapmodify as well or any other ldap tool)
phpldapadmin config.php
<?php
$config->custom->appearance['friendly_attrs'] = array(
'facsimileTelephoneNumber' => 'Fax',
'gid' => 'Group',
'mail' => 'Email',
'telephoneNumber' => 'Telephone',
'uid' => 'User Name',
'userPassword' => 'Password'
);$servers = new Datastore();
$servers->newServer('ldap_pla');
$servers->setValue('server','name','My LDAP Server');
$servers->setValue('server','host','YOUR HOST IP');
$servers->setValue('server','port',389);
$servers->setValue('server','base',array(''));
$servers->setValue('login','bind_id','uid=zimbra,cn=admins,cn=zimbra');
$servers->setValue('login','bind_pass','YOUR_PASSWORD');
?>Using PHPLDAPADMIN do the following
Search Base DNDC=yourdomainname, DC=com
Click on domain, make changes searching for
zimbradomainstatus
zimbraDomainRenameInfo - set to "active" no quotes
zimbradomainrenameinfo
zimbraDomainStatus - delete all text from boxzimbraMailStatus - enabled
zmprov md YOUR_DOMAIN_NAME zimbraMailStatus enabledupdate verify it updated as it sometimes will prompt you "Click Update Object" button at bottom of object
as zimbra user
zmmailboxdctl restartzmprov md YOUR_NEWLY_RENAMED_DOMAIN_NAME zimbraMailStatus enabled
If you want to remove old domain
zmprov dd THE_OLD_DOMAIN
You can obtain your LDAP password by running:
$ zmlocalconfig -s | grep zimbra_ldap_password zimbra_ldap_password = XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
I found the config.php part uneccecary since the default installation of phpldapadmin supplies a form for directly logging in.
I've been having trouble with XCache's datastore lately and was prompted to revisit my SHM/tmpfs File-Based PHP Cache/Datastore in RAM strategy.
I mounted a 256MB tmpfs slice like this:
none /mnt/ram tmpfs defaults,noatime,size=256M 0 0
Somehow, after the storage was exhausted the number of files kept increasing.
$ watch "ls | wc -l"
To my surprise new, empty files were being created with a random string attached to their name.
36588.posts.object.ychanKJYGF 36588.posts.ychanPIUGN
Interestingly, while these non-files continued to accumulate the reported amount of storage used by tmpfs never changed. One might expect these file entries to be taking up some amount of space, somewhere.
I've done as much research as time will permit but haven't found the purpose of this behaviour. Since the altered file name and lack of content makes these files void as far as my fcache implementation is concerned it highlights the importance of thorough garbage collection.
I recently set up a TeamSpeak3 server for the YI Minecraft users. Due to a crazy high-load-but-low-CPU-utlization problem I have decided to ditch ts3 and try Mumble.
Before I remove it, here's the qick and clean init script I made (assumes ts3 was installed to /opt/ts3/ and a non-privileged user called ts3 has been made):
#!/sbin/runscript # Copyright (c) 2013 http://foxpa.ws # All rights released description="Runs TeamSpeak3 on Gentoo" depend() { need net } start() { ebegin "Starting TeamSpeak3" start-stop-daemon --start --quiet --user=ts3 --background --chdir=/opt/ts3/ --exec "/opt/ts3/ts3server_startscript.sh" -- start eend ${?} } stop() { ebegin "Stopping TeamSpeak3" cd /opt/ts3/ start-stop-daemon --stop --quiet --exec "/opt/ts3/ts3server_startscript.sh" -- stop /opt/ts3/ts3server_startscript.sh stop &> /dev/null eend ${?} }