Technology related solutions, tips, tricks, and other interesting topics
How to Backup a MySQL Database With mysqldump
mysqldump -u userNameWithPrivileges -p databaseName > outputFileName.sql
How to Restore a mysqldump Backup
mysql -u userNameWithPrivileges -p database < outputFileName.sql
* Replace “userNameWithPrivileges” with the username of a MySQL account that can read/write to the database being backed up / restored.
In: General IT Info
10 Mar 2009 Locate the “neo-security.xml” file in the \lib\ subdirectory of your ColdFusion install
Find the following line in the file
<var name=’admin.security.enabled’><boolean value=’true’/></var>
and change it to
<var name=’admin.security.enabled’><boolean value=’false’/></var>
Restart the ColdFusion Application Server service.
Now you can log straight into the admin interface without being prompted for a password.
Go to the change password screen for [...]
Sometimes after inserting a new SSD ExpressCard device into your Vista computer for the first time you may see the following message under the device’s “ReadyBoost” tab: “Device interface is not supported”. Do the following to enable ReadyBoost for the device (assuming the device is ReadyBoost compatible):
Start up the “Disk Management” manager under: Right-click [...]
If you notice Sendmail hanging up for many minutes while starting up at boot or while being used such as sending an email from a PHP script, it is probably a DNS lookup problem. Ensure your /etc/hosts file has the appropriate entries for your server that sendmail is running on:
127.0.0.1 [...]
This blog is about technology related topics. It will primarily contain problems and solutions to IT problems that I encounter on a day-to-day basis. In addition interesting things I come across either on or off the internet will be posted here as well. I will also include step-by-step tutorials to common tasks people may need to do with their computers.