) Download three optional hot fixes from Microsoft: Windows 2008 R2: KB2386184: This is a patch adding a feature to exclude IP addresses from the list of IP addresses allowed as the outgoing IP address (e. source). This is the key patch allowing us to “select” the primary IP address. KB2554859: KB2386184 was buggy and ..
Older systems wget -q -O – http://linux.dell.com/repo/hardware/DSU_16.05.00/bootstrap.cgi | bash yum install dell-system-update srvadmin-all –enablerepo=base /opt/dell/srvadmin/sbin/srvadmin-services.sh start ln-s /opt/dell/srvadmin/sbin/omreport /usr/bin/omreport Newer systems wget -q -O – http://linux.dell.com/repo/hardware/dsu/bootstrap.cgi | bash yum install dell-system-update srvadmin-all –enablerepo=base /opt/dell/srvadmin/sbin/srvadmin-services.sh start ln-s /opt/dell/srvadmin/sbin/omreport /usr/bin/omreport Dell bumf – https://linux.dell.com/repo/hardware/dsu/ Updating Firmware The below command will provide a command line interface to update ..
Identify partition using: # fdisk -l Disk /dev/sdb: 999.7 GB, 999653638144 bytes, 1952448512 sectors Units = sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Use parted to create the partition parted /dev/sdb unit TB mkpart primary 0 100% print ..
ALPN Step 1. Manually update your openssl # openssl version OpenSSL 1.0.1e-fips 11 Feb 2013 # yum install pcre-devel -y # cd /usr/local/src/ # wget https://www.openssl.org/source/openssl-1.0.2-latest.tar.gz # tar -zxf openssl-1.0.2-latest.tar.gz # cd openssl-1.0.2k/ # ./config # make depend # make # make test # make install # mv /usr/bin/openssl /usr/bin/openssl_1.0.1e # ln -s /usr/local/ssl/bin/openssl /usr/bin/openssl ..
XenServer tweaks 1) Find vm xe vm-list 2) list vifs on the vm xe vm-vif-list uuid=VMUUID uuid ( RO) : VIFUUID1 vm-name-label ( RO): VMNAME network-name-label ( RO): NETWORK 1 uuid ( RO) : VIFUUID2 vm-name-label ( RO): VMNAME network-name-label ( RO): NETWORK 2 3)set variable VIFUUID=”VIFUUID1″ 4) check echo “${VIFUUID1}” 5) Disable the offload ..
Can never remember: Remote Desktop Session Host Configuration – tsconfig.msc Restrict each user to a single sess..
Well this was a bugger, mainly because I fart arsed about setting up NGINX/PHP-FPM individual pools on a UAT box using a script I found on that there “internet”. To be fair it is a good script, but I was too lazy for my own good and didn’t debug well. Here it is. Moral of ..
Fresh CentOS 7 Install NGINX yum install screen epel-release -y yum install nginx -y mkdir /etc/nginx/sites-available/ systemctl start nginx systemctl enable nginx MySQL wget http://dev.mysql.com/get/mysql57-community-release-el7-8.noarch.rpm rpm -ivh mysql57-community-release-el7-8.noarch.rpm rm -f mysql57-community-release-el7-8.noarch.rpm yum clean all -y yum install mysql-server -y systemctl restart mysqld systemctl enable mysqld Secure MySQL grep “temporary password” /var/log/mysqld.log A temporary password is ..
I always forget how to do this, I usually spend more time looking for the guide I used last time than the just a basic guide!! Anyway, Use parted to create the partition parted /dev/sda mklabel gpt unit TB mkpart primary 0 100% print quit Create Physical LVM Volume # pvcreate /dev/sda1 Physical volume “/dev/sda1” ..
Used this, slightly asha..