How To Resolve Tomcat - Openfire Port ConflictNovember 13th, 2007 Openfire (Jabber/XMPP server) by default binds on port 8080 which is also used by Tomcat. This causes Tomcat to fail when openfire is started before it.
How To Connect To OpenFire XMPP Server From Gaim / PidginAugust 17th, 2007 I faced quite some problems, to say the least, in configuring Pidgin / Gaim to connect to OpenFire XMPP Server on Fedora Core 6. Here are the detailed steps for a no-brainer configuration of Gaim for OpenFire:
1.
Mambo / Joomla Password - How to Reset / RecoverMarch 2nd, 2006 Mambo / Joomla passwords cannot be recovered as they are set using a one-way hash function (MD5). However they can be reset to new values.
How To Enable Root Account on Mac OSXApril 20th, 2008 1. Login to the Admin account (not the normal account)
2. Open up a command shell in the Terminal application by selecting - Macintosh HD -> Applications -> Utilities -> Terminal
At the command prompt type this command:
sudo passwd root
You will then get the following prompts.
Guide: How To Recover Google AdSense PasswordJune 3rd, 2008 Recovering Google AdSense password is now relatively easy because of its recent integration with Google Account. I have provided a step-by-step guide to recover your AdSense password for every situation.
How to Recover MySQL Root PasswordJanuary 17th, 2009 Do you want to recover the MySQL root password. its by no means, easy.
Angsuman's WordPress 2.0 / 1.5.x Dashboard Replacement: How to Trim The Fat Resource Hogging WordPress Admin DashboardDecember 27th, 2005 WordPress developers are adding their preferred feeds to WordPress Admin Dashboard (from WordPress 1.5 onwards), which significantly slows up loading the Admin Dashboard. Additionally few essential information has been removed frfom the official version of admin dashboard and also some information moved to hard-to-get locations in order to accomodate their copious feed data.
Opera Password Recovery 5.0.2 - A previewDecember 24th, 2008 Though in this on going battle of Firefox and Google Chrome, Opera has never lost its own position. Probably the most under-rated (less discussed to be accurate) browsers of our times, Opera has many a features which even Firefox don't.
How to hack BIOS Password of laptopsFebruary 6th, 2009 Gosh! You know it never rains but it pours. Same with me, this morning I lost my IBM ThinkPad's BIOS(CMOS) password.
List of Files Changed in WordPress 2.03 wrt. WordPress 2.02June 1st, 2006 WordPress 2.03 has been released. Here are the list of files changed in WordPress 2.03 in comparison with WordPress 2.02 for those planning on selective upgrade:
wp-admin/admin-db.php
wp-admin/admin-functions.php
wp-admin/admin.php
wp-admin/cat-js.php
wp-admin/categories.php
wp-admin/edit-comments.php
wp-admin/edit-form-advanced.php
wp-admin/edit-form-ajax-cat.php
wp-admin/edit-form-comment.php
wp-admin/edit-link-form.php
wp-admin/edit-page-form.php
wp-admin/edit-pages.php
wp-admin/edit.php
wp-admin/import/mt.php
wp-admin/inline-uploading.php
wp-admin/link-categories.php
wp-admin/link-import.php
wp-admin/link-manager.php
wp-admin/list-manipulation-js.php
wp-admin/list-manipulation.php
wp-admin/moderation.php
wp-admin/options-discussion.php
wp-admin/options-general.php
wp-admin/options-misc.php
wp-admin/options-permalink.php
wp-admin/options-reading.php
wp-admin/options-writing.php
wp-admin/options.php
wp-admin/page-new.php
wp-admin/plugin-editor.php
wp-admin/plugins.php
wp-admin/post.php
wp-admin/profile-update.php
wp-admin/profile.php
wp-admin/templates.php
wp-admin/theme-editor.php
wp-admin/themes.php
wp-admin/upgrade-schema.php
wp-admin/upgrade.php
wp-admin/user-edit.php
wp-admin/users.php
wp-comments-post.php
wp-content/plugins/akismet/akismet.php
wp-content/plugins/wp-db-backup.php
wp-includes/cache.php
wp-includes/capabilities.php
wp-includes/classes.php
wp-includes/comment-functions.php
wp-includes/default-filters.php
wp-includes/functions-compat.php
wp-includes/functions-formatting.php
wp-includes/functions-post.php
wp-includes/functions.php
wp-includes/kses.php
wp-includes/links.php
wp-includes/pluggable-functions.php
wp-includes/registration-functions.php
wp-includes/template-functions-general.php
wp-includes/template-functions-links.php
wp-includes/vars.php
wp-includes/version.php
wp-login.php
Note: The files are hyperlinked to WordPress trunk source codebase.
How To Reset Google AdSense PasswordMarch 23rd, 2007 Strangely the most obvious means to reset Google AdSense password may not work for you. By obvious I mean the link on AdSense login page: I cannot access my account.
How to Set Up Root Password for Your MySQL ServerJanuary 17th, 2009 If you have never set a root password for MySQL, the server does not require a password at all for connecting as root. To set up a root password for the first time, use the mysqladmin command at the shell prompt as follows:
$ mysqladmin -u root password newpass
If you want to change (or update) a root password, then you need to use the following command:
$ mysqladmin -u root -p oldpassword newpass
I hope this will work for you perfectly.
How to Reset Master Password in Firefox in Case You Have Forgotten itJanuary 14th, 2009 It happened to me just the other day. Someone deliberately got into my Firefox, cracked my login information from security options and surfed to my password secured websites at glory.
How to Disable Direct Root Login to Secure Your NetworkJanuary 2nd, 2009 Root login is perhaps one of the very few vulnerabilities that Linux operating system faces. A person can hack into your system as a root user easily and can play with security settings.
How PHPBB Site was Hacked and How You Can Prevent itFebruary 5th, 2009 The simplest way to start this topic is, PHPBB is hacked. You must have heard of it by now.
February 6th, 2009 at 3:31 pm
I wasn’t able to follow your instructions to find out my password. I’m using Openfire 3.6.3 on Ubuntu.
However, your post was helpful because it lead me to the conclusion that I could get the password from mysql.
I used the following mySQL commands:
USE openfire;
SHOW tables;
There, I saw that there was a table called ofUser. So I used:
SHOW columns FROM ofUser;
I then used
SELECT * FROM ofUser;and discovered that the default password for user admin was admin, though I had entered a different password. I tried that password, and it worked!
April 28th, 2009 at 11:04 am
The command for current versions of openfire (3.6.x) is a little different than this guide.
update ofuser set plainPassword=’123456′, encryptedPassword = null where username =’admin’;
jiveuser is ofuser, and password becomes plainPassword.