[Solution] ERROR 1698 (28000): Access denied for user ‘root’@’localhost’
Basically means that: db_users using it, will be “auth” by the system user credentias. You can see if your root user is set up like this by…
Explore practical articles, tutorials, and troubleshooting guides from this topic cluster.
Basically means that: db_users using it, will be “auth” by the system user credentias. You can see if your root user is set up like this by…
mkdir -p /var/run/mysqld chown mysql:mysql /var/run/mysqld
Stop the MySQL service sudo /etc/init.d/mysql stop Start MySQL without a password sudo mysqld_safe –skip-grant-tables & Connect to MySQL mysql -uroot Set…
Edit this file Change ServerName and ServerAlias to your domain, then Add these lines Then restart apache
Permission issues with WordPress
Sometimes you need to get your virtual host file, you can get them by : a2query -s or apachectl -S
To connect to MySQL mysql -u root -p Create a MysSQL Datatase CREATE DATABASE mydatabase; or Create a MySQL database character with…
How to add expire header on Ubuntu with Apache2 : Edit your httpd.conf The module ‘mod_expires’ must be activated Add the new…
Check to make sure you have mod_rewrite enabled. Under Apache 2+ sudo a2enmod rewrite && sudo service apache2 restart or sudo a2enmod rewrite…
I share with you the solution : Create a link /var/www sudo ln -s /usr/share/phpmyadmin /var/www/ sudo nano /etc/apache2/apache2.conf Then add the…