solving open flash chart 1.x issue on IE behind HTTPS
Archive for the ‘troubleshooting’ Category
open-flash-chart, IE and SSL
Posted in Open Source, code snippet, howto, troubleshooting, tagged https, ie, open flash chart, response headers, ssl on January 15, 2009 | 1 Comment »
getting apt workig with Ubuntu
Posted in linux, troubleshooting, tagged apt, linux, sources.list, ubuntu on December 13, 2007 | Comments Off
by the principal of knowledge sharing, I wish this would save someone’s time.
I installed ubuntu and tried installing some packages, then I got: please insert cdrom …. bla bla. while I want apt to look on the remote servers!
well, to solve the problem: go to /etc/apt/sources.list and comment the line talking about cdrom.
That is it!
reset root password for Mysql on linux Box
Posted in System Administration, linux, troubleshooting, tagged linux, mysql, password, recover password, root, root password on November 26, 2007 | Comments Off
If you missed your mysql root user password, then here are the steps to reset it:
stop mysql server
service mysqld stop
make sure all mysql process are dead
ps -A | grep mysql
start mysqld in safe mode
mysqld_safe –skip-grant-tables
open a new shell window and start mysqld
service mysqld start
access mysql database
mysql -u root mysql
reset password [...]