Hello all,
I got Linux, Ubuntu !
Today i got a root,but i dont know how to unistall phpmyadmin,
becouse i dont know my password,and on http://mywebsite/phpmyadmin/
if i type anything,there this comes :
Thats not meaning wrong password,there is another bug :S
I tried that too :
Set / Change / Reset the MySQL root password on Ubuntu Linux
There comes some bugs too,
sudo /etc/init.d/mysql stop
sudo mysqld --skip-grant-tables &
mysql -u root mysql
UPDATE user SET Password=PASSWORD('mypassword') WHERE User='root'; FLUSH PRIVILEGES; exit;
Thanks alot for your help,and ofc,i will give a REP++ !!
Thankss !
I got Linux, Ubuntu !
Today i got a root,but i dont know how to unistall phpmyadmin,
becouse i dont know my password,and on http://mywebsite/phpmyadmin/
if i type anything,there this comes :
Thats not meaning wrong password,there is another bug :S
I tried that too :
Set / Change / Reset the MySQL root password on Ubuntu Linux
There comes some bugs too,
sudo /etc/init.d/mysql stop
PHP:
root@vps:~# sudo /etc/init.d/mysql stop
Rather than invoking init scripts through /etc/init.d, use the service(8)
utility, e.g. service mysql stop
Since the script you are attempting to invoke has been converted to an
Upstart job, you may also use the stop(8) utility, e.g. stop mysql
root@vps:~#
sudo mysqld --skip-grant-tables &
PHP:
root@vps:~# sudo mysqld --skip-grant-tables &
[1] 5897
mysql -u root mysql
PHP:
root@vps:~# mysql -u root mysql
ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2)
UPDATE user SET Password=PASSWORD('mypassword') WHERE User='root'; FLUSH PRIVILEGES; exit;
PHP:
root@vps:~# UPDATE user SET Password=PASSWORD('mypassword') WHERE User='root'; FLUSH PRIVILEGES; exit;
-bash: syntax error near unexpected token `('
Thanks alot for your help,and ofc,i will give a REP++ !!
Thankss !