Steps to reset mysql root password from mysql safe: # service mysqld stop # mysqld_safe –skip-grant-tables & That should start up mysql without the need for a root password. Once in, type >use mysql >UPDATE user SET password=PASSWORD(‘newpass’) WHERE user=’root’; >FLUSH PRIVILEGES; >quit That will reset the root password for you. Kill all old processes […]
See MoreTag: hostripples
WordPress .htaccess basic code!
The following permalink rewrite code should be included in your .htaccess file: # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress
See MoreRetry time not reached for any host after a long failure period!
Exim is an one of the mail server and such error messages comes just because of corrupted exim db files and it can be fixed with the help of below steps: Goto /var/spool/exim/db and delete files: retry , retry.lockfile , wait-remote_smtp, wait-remote_smtp.lockfile /etc/init.d/exim restart Also you maybe want to delete left over stuff under /var/spool/exim/input and […]
See More
You must be logged in to post a comment.