.htaccess
http://www.webweaver.nu/html-tips/web-redirection.shtml
http://www.htaccesstools.com/
http://www.webweaver.nu/html-tips/web-redirection.shtml
http://www.htaccesstools.com/
First access the server command line. I used SSH over Putty (http://www.chiark.greenend.org.uk/~sgtatham/putty/) But you can use the terminal/console if supported by your host, ftp or winSCP (https://winscp.net/eng/docs/guide_install) which may be easier. then access the file /etc/ips.remotedns For SSH I used the command: nano /etc/ips.remotedns you will need to know the nameservers for your domain I…
Unfortunately due to the limited availability of IP addresses sometimes they are re-used from sources that have been black listed in the past. Generally blacklists are updated within 30 days of an IP not being reported for spam. However many services like Microsoft, Google, Yahoo and others, have taken to using their own systems…
First you will need to login to WHM Then go to “Home »Account Information »List Accounts” Click the “+” to the left of the account you want to have SSH Select “Modify Account” from the list. Then scroll down to the “Privileges” section and select “Shell Access” Now hit “Save”
In Linux I prefer using smartctl smartctl -i /dev/sda or hdparm -I /dev/sda | grep Serial Megacli RAid card — megacli -PDList -aALL or hdparm -I /dev/sdX | grep -i ‘serial’ Adaptec —- /usr/StorMan/arcconf getconfig 1 ================================ For Windows https://whatsonmypc.wordpress.com/2011/09/01/wmic/ If you have many hard drives like me, use this instead to help you know…
Supermicro IPMI firmware source: http://www.supermicro.com/support/bios/firmware0.aspx Manual: ftp://supermicro.com/CDR-X9-UP_1.22_for_Intel_X9_UP_platform/IPMI/IPMICFG/Supermicro_Utility_User_Guide_IPMICFG.pdf ===================================================== Find your motherboard info Windows—- launch dxdiag tool from the start menu Linux—- # dmidecode -t 2 yum -y install OpenIPMI service ipmi start chkconfig ipmi on mkdir /ipmi cd /ipmi wget “ftp://ftp.supermicro.com/utility/IPMICFG/IPMICFG_1.27.0_build.170620.zip” unzip IPMICFG_1.27.0_build.170620.zip chmod -R u+rwx IPMICFG_1.27.0_build.170620/Linux/64bit/IPMICFG-Linux.x86_64 cd IPMICFG_1.27.0_build.170620/Linux/64bit/ ./IPMICFG-Linux.x86_64 -dhcp off ./IPMICFG-Linux.x86_64 -m ./IPMICFG-Linux.x86_64…
############ Creating Users ############ useradd————— create a user with default home directory useradd -m <username> Create a user with different home directory useradd -m -d <directoy> <username> Create A User With An Expiry Date useradd -e 2016-02-05 <username> ###note The date must be specified in the format YYYY-MM-DD How To Create A User And Assign…