28
Nov
2014
Red Branch | For Future Reference …
I wanted to automatically deploy a web project when any updates are pushed to the gitlab repository. To do so I added a 'Web Hook'. The Web Hook calls a URL in response to 'push' events. I created a PHP page to be called by the Web Hook: So in... » More
To check the size and amount of Huge Pages use: grep -i Hugepage /proc/meminfo This should so something like: HugePages_Total: 0 HugePages_Free: 0 HugePages_Rsvd: 0 HugePages_Surp: ... » More
Download the slurm tarball from http://www.schedmd.com/#repos Install dependencies: yum install munge-devel munge-libs readline-devel perl-ExtUtils-MakeMaker openssl-devel pam-devel rpm-build Build the RPM: rpmbuild -ta... » More
I have installed phpMyAdmin on CentOS 6 via the EPEL repository using: yum install phpMyAdmin I was asked to set the default theme from the new jazzy one to the traditional one. To do so I edited the phpMyAdmin config file. On CentOS this was at... » More
I needed to test a ProFTP server to ensure that it could cope with 200 simultaneous users. The relevant lines in /etc/proftpd.conf to control this are: MaxInstances 30 MaxClientsPerHost 20 "Only %m connections per host... » More