How to uninistall phpmyadmin

Clash Royale CLAN TAG#URR8PPP up vote
0
down vote
favorite
I installed phpmyadmin using this method
https://stackoverflow.com/questions/48552306/how-to-install-phpmyadmin-4-7-7-on-ubuntu/48559715
Now I see that new version is out, I would like to completely remove installed and install the new one. I tried several ways to uninstall but unsuccessful. Here what I got:
sudo apt-get purge phpmyadmin*
Reading package lists... Done
Building dependency tree
Reading state information... Done
Note, selecting 'phpmyadmin' for glob 'phpmyadmin*'
Package 'phpmyadmin' is not installed, so not removed
0 upgraded, 0 newly installed, 0 to remove and 28 not upgraded.
sudo dpkg-reconfigure phpmyadmin
dpkg-query: package 'phpmyadmin' is not installed and no information is available
Use dpkg --info (= dpkg-deb --info) to examine archive files,
and dpkg --contents (= dpkg-deb --contents) to list their contents.
/usr/sbin/dpkg-reconfigure: phpmyadmin is not installed
Question is, what is the right uninstallation way for my type of installation?
Thanks,
Val
apt dpkg uninstall phpmyadmin
add a comment |Â
up vote
0
down vote
favorite
I installed phpmyadmin using this method
https://stackoverflow.com/questions/48552306/how-to-install-phpmyadmin-4-7-7-on-ubuntu/48559715
Now I see that new version is out, I would like to completely remove installed and install the new one. I tried several ways to uninstall but unsuccessful. Here what I got:
sudo apt-get purge phpmyadmin*
Reading package lists... Done
Building dependency tree
Reading state information... Done
Note, selecting 'phpmyadmin' for glob 'phpmyadmin*'
Package 'phpmyadmin' is not installed, so not removed
0 upgraded, 0 newly installed, 0 to remove and 28 not upgraded.
sudo dpkg-reconfigure phpmyadmin
dpkg-query: package 'phpmyadmin' is not installed and no information is available
Use dpkg --info (= dpkg-deb --info) to examine archive files,
and dpkg --contents (= dpkg-deb --contents) to list their contents.
/usr/sbin/dpkg-reconfigure: phpmyadmin is not installed
Question is, what is the right uninstallation way for my type of installation?
Thanks,
Val
apt dpkg uninstall phpmyadmin
For future reference, if you don't useapt-getordpkgto install, you can't use them to uninstall.
â Chai T. Rex
Feb 22 at 8:34
add a comment |Â
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I installed phpmyadmin using this method
https://stackoverflow.com/questions/48552306/how-to-install-phpmyadmin-4-7-7-on-ubuntu/48559715
Now I see that new version is out, I would like to completely remove installed and install the new one. I tried several ways to uninstall but unsuccessful. Here what I got:
sudo apt-get purge phpmyadmin*
Reading package lists... Done
Building dependency tree
Reading state information... Done
Note, selecting 'phpmyadmin' for glob 'phpmyadmin*'
Package 'phpmyadmin' is not installed, so not removed
0 upgraded, 0 newly installed, 0 to remove and 28 not upgraded.
sudo dpkg-reconfigure phpmyadmin
dpkg-query: package 'phpmyadmin' is not installed and no information is available
Use dpkg --info (= dpkg-deb --info) to examine archive files,
and dpkg --contents (= dpkg-deb --contents) to list their contents.
/usr/sbin/dpkg-reconfigure: phpmyadmin is not installed
Question is, what is the right uninstallation way for my type of installation?
Thanks,
Val
apt dpkg uninstall phpmyadmin
I installed phpmyadmin using this method
https://stackoverflow.com/questions/48552306/how-to-install-phpmyadmin-4-7-7-on-ubuntu/48559715
Now I see that new version is out, I would like to completely remove installed and install the new one. I tried several ways to uninstall but unsuccessful. Here what I got:
sudo apt-get purge phpmyadmin*
Reading package lists... Done
Building dependency tree
Reading state information... Done
Note, selecting 'phpmyadmin' for glob 'phpmyadmin*'
Package 'phpmyadmin' is not installed, so not removed
0 upgraded, 0 newly installed, 0 to remove and 28 not upgraded.
sudo dpkg-reconfigure phpmyadmin
dpkg-query: package 'phpmyadmin' is not installed and no information is available
Use dpkg --info (= dpkg-deb --info) to examine archive files,
and dpkg --contents (= dpkg-deb --contents) to list their contents.
/usr/sbin/dpkg-reconfigure: phpmyadmin is not installed
Question is, what is the right uninstallation way for my type of installation?
Thanks,
Val
apt dpkg uninstall phpmyadmin
apt dpkg uninstall phpmyadmin
asked Feb 22 at 6:39
Valentinas
31
31
For future reference, if you don't useapt-getordpkgto install, you can't use them to uninstall.
â Chai T. Rex
Feb 22 at 8:34
add a comment |Â
For future reference, if you don't useapt-getordpkgto install, you can't use them to uninstall.
â Chai T. Rex
Feb 22 at 8:34
For future reference, if you don't use
apt-get or dpkg to install, you can't use them to uninstall.â Chai T. Rex
Feb 22 at 8:34
For future reference, if you don't use
apt-get or dpkg to install, you can't use them to uninstall.â Chai T. Rex
Feb 22 at 8:34
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
0
down vote
accepted
I faced the same issue on my system a while back. Post some research, I came across these commands. They are quite old, yet they worked for me. Try executing these commands in the given order:
sudo dpkg -P phpmyadminsudo rm -f /etc/apache2/conf.d/phpmyadmin.confsudo service apache2 restart- To remove all the remaining files, execute
sudo apt-get autoremove phpmyadmin
Thanks for answer, but didn`t helped. sudo dpkg -P phpmyadmin dpkg: warning: ignoring request to remove phpmyadmin which isn't installed I still able to connect to phpmyadmin
â Valentinas
Feb 22 at 7:07
no issues we can find some other solution. you are using v4.7.7 (the same version you installed from the link)only right?
â mAnN
Feb 22 at 7:09
yes, Version information: 4.7.7
â Valentinas
Feb 22 at 7:13
Since you installed it from the Ubuntu repositories, try this commandsudo apt-get purge phpmyadminThe "purge" instead of "remove" instructs it to remove its configuration files too, including the configuration it added to Apache's configuration directories. P.S - You triedsudo apt-get purge phpmyadmin*. Now try it without putting "*".
â mAnN
Feb 22 at 7:21
it says that phpadmin is not installed $ sudo apt-get purge phpmyadmin [sudo] password for ***: Reading package lists... Done Building dependency tree Reading state information... Done Package 'phpmyadmin' is not installed, so not removed 0 upgraded, 0 newly installed, 0 to remove and 28 not upgraded.
â Valentinas
Feb 22 at 7:31
 |Â
show 3 more comments
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
accepted
I faced the same issue on my system a while back. Post some research, I came across these commands. They are quite old, yet they worked for me. Try executing these commands in the given order:
sudo dpkg -P phpmyadminsudo rm -f /etc/apache2/conf.d/phpmyadmin.confsudo service apache2 restart- To remove all the remaining files, execute
sudo apt-get autoremove phpmyadmin
Thanks for answer, but didn`t helped. sudo dpkg -P phpmyadmin dpkg: warning: ignoring request to remove phpmyadmin which isn't installed I still able to connect to phpmyadmin
â Valentinas
Feb 22 at 7:07
no issues we can find some other solution. you are using v4.7.7 (the same version you installed from the link)only right?
â mAnN
Feb 22 at 7:09
yes, Version information: 4.7.7
â Valentinas
Feb 22 at 7:13
Since you installed it from the Ubuntu repositories, try this commandsudo apt-get purge phpmyadminThe "purge" instead of "remove" instructs it to remove its configuration files too, including the configuration it added to Apache's configuration directories. P.S - You triedsudo apt-get purge phpmyadmin*. Now try it without putting "*".
â mAnN
Feb 22 at 7:21
it says that phpadmin is not installed $ sudo apt-get purge phpmyadmin [sudo] password for ***: Reading package lists... Done Building dependency tree Reading state information... Done Package 'phpmyadmin' is not installed, so not removed 0 upgraded, 0 newly installed, 0 to remove and 28 not upgraded.
â Valentinas
Feb 22 at 7:31
 |Â
show 3 more comments
up vote
0
down vote
accepted
I faced the same issue on my system a while back. Post some research, I came across these commands. They are quite old, yet they worked for me. Try executing these commands in the given order:
sudo dpkg -P phpmyadminsudo rm -f /etc/apache2/conf.d/phpmyadmin.confsudo service apache2 restart- To remove all the remaining files, execute
sudo apt-get autoremove phpmyadmin
Thanks for answer, but didn`t helped. sudo dpkg -P phpmyadmin dpkg: warning: ignoring request to remove phpmyadmin which isn't installed I still able to connect to phpmyadmin
â Valentinas
Feb 22 at 7:07
no issues we can find some other solution. you are using v4.7.7 (the same version you installed from the link)only right?
â mAnN
Feb 22 at 7:09
yes, Version information: 4.7.7
â Valentinas
Feb 22 at 7:13
Since you installed it from the Ubuntu repositories, try this commandsudo apt-get purge phpmyadminThe "purge" instead of "remove" instructs it to remove its configuration files too, including the configuration it added to Apache's configuration directories. P.S - You triedsudo apt-get purge phpmyadmin*. Now try it without putting "*".
â mAnN
Feb 22 at 7:21
it says that phpadmin is not installed $ sudo apt-get purge phpmyadmin [sudo] password for ***: Reading package lists... Done Building dependency tree Reading state information... Done Package 'phpmyadmin' is not installed, so not removed 0 upgraded, 0 newly installed, 0 to remove and 28 not upgraded.
â Valentinas
Feb 22 at 7:31
 |Â
show 3 more comments
up vote
0
down vote
accepted
up vote
0
down vote
accepted
I faced the same issue on my system a while back. Post some research, I came across these commands. They are quite old, yet they worked for me. Try executing these commands in the given order:
sudo dpkg -P phpmyadminsudo rm -f /etc/apache2/conf.d/phpmyadmin.confsudo service apache2 restart- To remove all the remaining files, execute
sudo apt-get autoremove phpmyadmin
I faced the same issue on my system a while back. Post some research, I came across these commands. They are quite old, yet they worked for me. Try executing these commands in the given order:
sudo dpkg -P phpmyadminsudo rm -f /etc/apache2/conf.d/phpmyadmin.confsudo service apache2 restart- To remove all the remaining files, execute
sudo apt-get autoremove phpmyadmin
edited Feb 22 at 7:05
answered Feb 22 at 7:00
mAnN
19118
19118
Thanks for answer, but didn`t helped. sudo dpkg -P phpmyadmin dpkg: warning: ignoring request to remove phpmyadmin which isn't installed I still able to connect to phpmyadmin
â Valentinas
Feb 22 at 7:07
no issues we can find some other solution. you are using v4.7.7 (the same version you installed from the link)only right?
â mAnN
Feb 22 at 7:09
yes, Version information: 4.7.7
â Valentinas
Feb 22 at 7:13
Since you installed it from the Ubuntu repositories, try this commandsudo apt-get purge phpmyadminThe "purge" instead of "remove" instructs it to remove its configuration files too, including the configuration it added to Apache's configuration directories. P.S - You triedsudo apt-get purge phpmyadmin*. Now try it without putting "*".
â mAnN
Feb 22 at 7:21
it says that phpadmin is not installed $ sudo apt-get purge phpmyadmin [sudo] password for ***: Reading package lists... Done Building dependency tree Reading state information... Done Package 'phpmyadmin' is not installed, so not removed 0 upgraded, 0 newly installed, 0 to remove and 28 not upgraded.
â Valentinas
Feb 22 at 7:31
 |Â
show 3 more comments
Thanks for answer, but didn`t helped. sudo dpkg -P phpmyadmin dpkg: warning: ignoring request to remove phpmyadmin which isn't installed I still able to connect to phpmyadmin
â Valentinas
Feb 22 at 7:07
no issues we can find some other solution. you are using v4.7.7 (the same version you installed from the link)only right?
â mAnN
Feb 22 at 7:09
yes, Version information: 4.7.7
â Valentinas
Feb 22 at 7:13
Since you installed it from the Ubuntu repositories, try this commandsudo apt-get purge phpmyadminThe "purge" instead of "remove" instructs it to remove its configuration files too, including the configuration it added to Apache's configuration directories. P.S - You triedsudo apt-get purge phpmyadmin*. Now try it without putting "*".
â mAnN
Feb 22 at 7:21
it says that phpadmin is not installed $ sudo apt-get purge phpmyadmin [sudo] password for ***: Reading package lists... Done Building dependency tree Reading state information... Done Package 'phpmyadmin' is not installed, so not removed 0 upgraded, 0 newly installed, 0 to remove and 28 not upgraded.
â Valentinas
Feb 22 at 7:31
Thanks for answer, but didn`t helped. sudo dpkg -P phpmyadmin dpkg: warning: ignoring request to remove phpmyadmin which isn't installed I still able to connect to phpmyadmin
â Valentinas
Feb 22 at 7:07
Thanks for answer, but didn`t helped. sudo dpkg -P phpmyadmin dpkg: warning: ignoring request to remove phpmyadmin which isn't installed I still able to connect to phpmyadmin
â Valentinas
Feb 22 at 7:07
no issues we can find some other solution. you are using v4.7.7 (the same version you installed from the link)only right?
â mAnN
Feb 22 at 7:09
no issues we can find some other solution. you are using v4.7.7 (the same version you installed from the link)only right?
â mAnN
Feb 22 at 7:09
yes, Version information: 4.7.7
â Valentinas
Feb 22 at 7:13
yes, Version information: 4.7.7
â Valentinas
Feb 22 at 7:13
Since you installed it from the Ubuntu repositories, try this command
sudo apt-get purge phpmyadmin The "purge" instead of "remove" instructs it to remove its configuration files too, including the configuration it added to Apache's configuration directories. P.S - You tried sudo apt-get purge phpmyadmin*. Now try it without putting "*".â mAnN
Feb 22 at 7:21
Since you installed it from the Ubuntu repositories, try this command
sudo apt-get purge phpmyadmin The "purge" instead of "remove" instructs it to remove its configuration files too, including the configuration it added to Apache's configuration directories. P.S - You tried sudo apt-get purge phpmyadmin*. Now try it without putting "*".â mAnN
Feb 22 at 7:21
it says that phpadmin is not installed $ sudo apt-get purge phpmyadmin [sudo] password for ***: Reading package lists... Done Building dependency tree Reading state information... Done Package 'phpmyadmin' is not installed, so not removed 0 upgraded, 0 newly installed, 0 to remove and 28 not upgraded.
â Valentinas
Feb 22 at 7:31
it says that phpadmin is not installed $ sudo apt-get purge phpmyadmin [sudo] password for ***: Reading package lists... Done Building dependency tree Reading state information... Done Package 'phpmyadmin' is not installed, so not removed 0 upgraded, 0 newly installed, 0 to remove and 28 not upgraded.
â Valentinas
Feb 22 at 7:31
 |Â
show 3 more comments
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1008605%2fhow-to-uninistall-phpmyadmin%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
For future reference, if you don't use
apt-getordpkgto install, you can't use them to uninstall.â Chai T. Rex
Feb 22 at 8:34