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 »

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 »

[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