How to uninistall phpmyadmin

The name of the pictureThe name of the pictureThe name of the pictureClash 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










share|improve this question





















  • 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














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










share|improve this question





















  • 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












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










share|improve this question













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






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Feb 22 at 6:39









Valentinas

31




31











  • 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















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










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 phpmyadmin

  • sudo rm -f /etc/apache2/conf.d/phpmyadmin.conf

  • sudo service apache2 restart

  • To remove all the remaining files, execute sudo apt-get autoremove phpmyadmin





share|improve this answer






















  • 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 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










Your Answer







StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "89"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: false,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













 

draft saved


draft discarded


















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






























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 phpmyadmin

  • sudo rm -f /etc/apache2/conf.d/phpmyadmin.conf

  • sudo service apache2 restart

  • To remove all the remaining files, execute sudo apt-get autoremove phpmyadmin





share|improve this answer






















  • 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 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














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 phpmyadmin

  • sudo rm -f /etc/apache2/conf.d/phpmyadmin.conf

  • sudo service apache2 restart

  • To remove all the remaining files, execute sudo apt-get autoremove phpmyadmin





share|improve this answer






















  • 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 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












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 phpmyadmin

  • sudo rm -f /etc/apache2/conf.d/phpmyadmin.conf

  • sudo service apache2 restart

  • To remove all the remaining files, execute sudo apt-get autoremove phpmyadmin





share|improve this answer














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 phpmyadmin

  • sudo rm -f /etc/apache2/conf.d/phpmyadmin.conf

  • sudo service apache2 restart

  • To remove all the remaining files, execute sudo apt-get autoremove phpmyadmin






share|improve this answer














share|improve this answer



share|improve this answer








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 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
















  • 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 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















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

















 

draft saved


draft discarded















































 


draft saved


draft discarded














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













































































Popular posts from this blog

How do so many people here on Academia.SE, and in general, afford lavish higher education programs?

Trouble downloading packages list due to a “Hash sum mismatch” error

How do I move numbers in filenames, in a batch renaming operation?