Jun 15
dcpumon is a CPU/Memory accounting script which stores percentage values of CPU and Memory usage under /var/log/dcpumon.
it can be very useful if you are trying to figure out what is eating your CPU.
So, without further ado, running the script: /usr/local/cpanel/bin/dcpumonview
# /usr/local/cpanel/bin/dcpumonview
———————————————————–
|User |Domain |CPU%|MEM%|MySQL#|
———————————————————–
|mysql | |1.50|0.10|0.0 |
| Top Process | 1.5 | /usr/sbin/mysqld
|root | |0.17|0.60|2.0 |
| Top Process | 3.0 | /usr/bin/perl /scripts/cpbackup
| Top Process | 0.1 | spamd child
———————————————————–
Jun 15
How to reset my WordPress admin password?
You have to do this through the WordPress database directly. The most convenient way to manage the database is via the phpMyAdmin tool at your web hosting account.
Once in phpMyAdmin select the WordPress database from the drop-down menu on the left. The page will refresh and the database’s tables will be displayed on it. Open the SQL tab (look at the top navigation bar).
In the text field write the following SQL query:
UPDATE `wp_users` SET `user_pass` = MD5( ‘new_password_here‘ ) WHERE `wp_users`.`user_login` = “admin_username“;
“new_password_here” - replace this with the new password you wish to use.
“admin_username” - replace this with the username the password should be updated for.
Once you are ready, click on the GO button to submit the query. If everything goes fine without errors, you should be able to login to WordPress with the new password.
Recent Comments