JavaScript appears to be disabled. We recommend you enable JavaScript while visiting this site.
Thoughts on the Web, technology, philosophy, and whatever else.
(All original content on this site is licensed under the Creative Commons License Attribution-Noncommercial-No Derivative Works 3.0.)
Another Ubuntu Quickie, this time on the default passwords for MySQL and PostgreSQL.
mysql -u root UPDATE mysql.user SET Password = OLD_PASSWORD('***password***') WHERE User = 'root'; FLUSH PRIVILEGES; \q
sudo -u postgres psql template1 ALTER USER postgres WITH PASSWORD '***password***'; \q
Tags: ubuntu, mysql, postgresql
Categories: article, tutorials/guides
Add comment