Author name: Jobin Joseph

View all posts by Jobin Joseph

How to Reset wordpress admin password via MySQL query or PhpMyadmin

This is how you can reset the password of your wordpress admin user. – Connect to your wordpress database via phpmyadmin or mysql-clients like sqlyog – Select the database and get ready to run the following query. [sociallocker] UPDATE `wp_users` SET `user_pass` = MD5( ‘newpassword’ ) WHERE `wp_users`.`user_login` = “admin”; [/sociallocker] – Now you can …

How to Reset wordpress admin password via MySQL query or PhpMyadmin Read More »

How to Test the disk write speed on the server

This command will create a 1000 MB file with name “jobnix-speedtest” . So, Make sure you have 1 GB free space before you run this command. Run the following command to test the write speed of the server disk. dd if=/dev/zero of=jobnix-speedtest bs=1M count=1000 conv=fdatasync Jobin JosephView all posts by Jobin Joseph hazercloud.com

Simple script to scan LUNs, create pv, vg, lv, mounting it and creating new entries in fstab in RHEL. (Note:- Probably need slight modification as pe

#!/bin/bash MPATH=0 for i in `ls /sys/class/scsi_host/host*/scan`; do echo “- – -” > $i; done sleep 5 multipath -ll echo -n “enter mpath:” read MPATH pvcreate /dev/mapper/${MPATH} vgcreate -s 32 $VG /dev/mapper/${MPATH} lvcreate -l 100%VG -n $LV $VG mkfs.ext4 /dev/mapper/${VG}-${LV} echo -n “Enter mount point directory full path:” read MOUNTPOINT if [ ! -d $MOUNTPOINT …

Simple script to scan LUNs, create pv, vg, lv, mounting it and creating new entries in fstab in RHEL. (Note:- Probably need slight modification as pe Read More »

CyanogenMod 10 – USB mass storage

Here is how you can enable USB Mass Storage in CynogenMod 10. Please follow the below steps, Go to, **Settings >> Storage**, Then hit **Menu button**. Select **USB Computer Connection** From the menu. Enable **Masst Storage** on the menu. Click **Turn On USB mass storage** on the next screen.   Jobin JosephView all posts by Jobin Joseph hazercloud.com

[How to] set a password for mysql root user

This is how to set a password for mysql root user. Run the following command to set a password `/usr/bin/mysqladmin -u root password ‘new-password’` Once the password is applied, Test it by accessing mysql as root from localhost. You will get something like this, “` root@JobNix:~# mysql ERROR 1045 (28000): Access denied for user ‘root’@’localhost’ …

[How to] set a password for mysql root user Read More »

Scroll to Top