Lamp Uninstall and Xampp
up vote
1
down vote
favorite
I installed lamp with this tutorial a while back: http://www.unixmen.com/install-lamp-with-1-command-in-ubuntu-1010-maverick-meerkat/
I have since decided it would be better to use the more full-featured Xampp. I installed Xampp successfully, but localhost still displays the default apache page. Apparently, I need to uninstall the lamp components individually to use Xampp. Any advice on how best to do this?
lamp xampp
add a comment |
up vote
1
down vote
favorite
I installed lamp with this tutorial a while back: http://www.unixmen.com/install-lamp-with-1-command-in-ubuntu-1010-maverick-meerkat/
I have since decided it would be better to use the more full-featured Xampp. I installed Xampp successfully, but localhost still displays the default apache page. Apparently, I need to uninstall the lamp components individually to use Xampp. Any advice on how best to do this?
lamp xampp
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I installed lamp with this tutorial a while back: http://www.unixmen.com/install-lamp-with-1-command-in-ubuntu-1010-maverick-meerkat/
I have since decided it would be better to use the more full-featured Xampp. I installed Xampp successfully, but localhost still displays the default apache page. Apparently, I need to uninstall the lamp components individually to use Xampp. Any advice on how best to do this?
lamp xampp
I installed lamp with this tutorial a while back: http://www.unixmen.com/install-lamp-with-1-command-in-ubuntu-1010-maverick-meerkat/
I have since decided it would be better to use the more full-featured Xampp. I installed Xampp successfully, but localhost still displays the default apache page. Apparently, I need to uninstall the lamp components individually to use Xampp. Any advice on how best to do this?
lamp xampp
lamp xampp
asked Sep 2 '12 at 15:18
southpointingchariot
1452413
1452413
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
2
down vote
I would suggest you to remove the following packages :
- libapache2-mod-auth-mysql
- phpmyadmin
- mysql-server
- mysql-server-
- mysql-server-core-
- apache2 and related modules
- libapache2-mod-php5
use sudo apt-get purge <package_name>
to remove the packages.
The text below is grabbed from Ubuntu help documentation:
Starting over: How to remove the LAMP stack
To remove the LAMP stack
remove the following packages:
Note: This assumes you have no other programs that require any of
these packages. You might wish to simulate this removal first, and
only remove the packages that don't cause removal of something
desired.
apache2 apache2-mpm-prefork apache2-utils apache2.2-common libapache2-mod-php5 libapr1 libaprutil1 libdbd-mysql-perl libdbi-perl libmysqlclient15off libnet-daemon-perl libplrpc-perl libpq5 mysql-client-5.0 mysql-common mysql-server mysql-server-5.0 php5-common php5-mysql
To also remove the debconf data, use the purge option when removing.
To get rid of any configurations you may have made to apache, manually
remove the /etc/apache2 directory once the packages have been removed.
I've done everything that you've described as far as I can tell - still no luck. Any other thoughts or resources?
– southpointingchariot
Sep 2 '12 at 16:43
Ah, I needed to reinstall XAMPP. Thank you!
– southpointingchariot
Sep 2 '12 at 17:41
Good that you found the fix. If you found this answer helpful then mark it as answered. Thanks
– devav2
Sep 2 '12 at 18:17
add a comment |
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',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f183270%2flamp-uninstall-and-xampp%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
2
down vote
I would suggest you to remove the following packages :
- libapache2-mod-auth-mysql
- phpmyadmin
- mysql-server
- mysql-server-
- mysql-server-core-
- apache2 and related modules
- libapache2-mod-php5
use sudo apt-get purge <package_name>
to remove the packages.
The text below is grabbed from Ubuntu help documentation:
Starting over: How to remove the LAMP stack
To remove the LAMP stack
remove the following packages:
Note: This assumes you have no other programs that require any of
these packages. You might wish to simulate this removal first, and
only remove the packages that don't cause removal of something
desired.
apache2 apache2-mpm-prefork apache2-utils apache2.2-common libapache2-mod-php5 libapr1 libaprutil1 libdbd-mysql-perl libdbi-perl libmysqlclient15off libnet-daemon-perl libplrpc-perl libpq5 mysql-client-5.0 mysql-common mysql-server mysql-server-5.0 php5-common php5-mysql
To also remove the debconf data, use the purge option when removing.
To get rid of any configurations you may have made to apache, manually
remove the /etc/apache2 directory once the packages have been removed.
I've done everything that you've described as far as I can tell - still no luck. Any other thoughts or resources?
– southpointingchariot
Sep 2 '12 at 16:43
Ah, I needed to reinstall XAMPP. Thank you!
– southpointingchariot
Sep 2 '12 at 17:41
Good that you found the fix. If you found this answer helpful then mark it as answered. Thanks
– devav2
Sep 2 '12 at 18:17
add a comment |
up vote
2
down vote
I would suggest you to remove the following packages :
- libapache2-mod-auth-mysql
- phpmyadmin
- mysql-server
- mysql-server-
- mysql-server-core-
- apache2 and related modules
- libapache2-mod-php5
use sudo apt-get purge <package_name>
to remove the packages.
The text below is grabbed from Ubuntu help documentation:
Starting over: How to remove the LAMP stack
To remove the LAMP stack
remove the following packages:
Note: This assumes you have no other programs that require any of
these packages. You might wish to simulate this removal first, and
only remove the packages that don't cause removal of something
desired.
apache2 apache2-mpm-prefork apache2-utils apache2.2-common libapache2-mod-php5 libapr1 libaprutil1 libdbd-mysql-perl libdbi-perl libmysqlclient15off libnet-daemon-perl libplrpc-perl libpq5 mysql-client-5.0 mysql-common mysql-server mysql-server-5.0 php5-common php5-mysql
To also remove the debconf data, use the purge option when removing.
To get rid of any configurations you may have made to apache, manually
remove the /etc/apache2 directory once the packages have been removed.
I've done everything that you've described as far as I can tell - still no luck. Any other thoughts or resources?
– southpointingchariot
Sep 2 '12 at 16:43
Ah, I needed to reinstall XAMPP. Thank you!
– southpointingchariot
Sep 2 '12 at 17:41
Good that you found the fix. If you found this answer helpful then mark it as answered. Thanks
– devav2
Sep 2 '12 at 18:17
add a comment |
up vote
2
down vote
up vote
2
down vote
I would suggest you to remove the following packages :
- libapache2-mod-auth-mysql
- phpmyadmin
- mysql-server
- mysql-server-
- mysql-server-core-
- apache2 and related modules
- libapache2-mod-php5
use sudo apt-get purge <package_name>
to remove the packages.
The text below is grabbed from Ubuntu help documentation:
Starting over: How to remove the LAMP stack
To remove the LAMP stack
remove the following packages:
Note: This assumes you have no other programs that require any of
these packages. You might wish to simulate this removal first, and
only remove the packages that don't cause removal of something
desired.
apache2 apache2-mpm-prefork apache2-utils apache2.2-common libapache2-mod-php5 libapr1 libaprutil1 libdbd-mysql-perl libdbi-perl libmysqlclient15off libnet-daemon-perl libplrpc-perl libpq5 mysql-client-5.0 mysql-common mysql-server mysql-server-5.0 php5-common php5-mysql
To also remove the debconf data, use the purge option when removing.
To get rid of any configurations you may have made to apache, manually
remove the /etc/apache2 directory once the packages have been removed.
I would suggest you to remove the following packages :
- libapache2-mod-auth-mysql
- phpmyadmin
- mysql-server
- mysql-server-
- mysql-server-core-
- apache2 and related modules
- libapache2-mod-php5
use sudo apt-get purge <package_name>
to remove the packages.
The text below is grabbed from Ubuntu help documentation:
Starting over: How to remove the LAMP stack
To remove the LAMP stack
remove the following packages:
Note: This assumes you have no other programs that require any of
these packages. You might wish to simulate this removal first, and
only remove the packages that don't cause removal of something
desired.
apache2 apache2-mpm-prefork apache2-utils apache2.2-common libapache2-mod-php5 libapr1 libaprutil1 libdbd-mysql-perl libdbi-perl libmysqlclient15off libnet-daemon-perl libplrpc-perl libpq5 mysql-client-5.0 mysql-common mysql-server mysql-server-5.0 php5-common php5-mysql
To also remove the debconf data, use the purge option when removing.
To get rid of any configurations you may have made to apache, manually
remove the /etc/apache2 directory once the packages have been removed.
edited Dec 13 at 15:00
TRiG
1,41111432
1,41111432
answered Sep 2 '12 at 16:08
devav2
24.4k126879
24.4k126879
I've done everything that you've described as far as I can tell - still no luck. Any other thoughts or resources?
– southpointingchariot
Sep 2 '12 at 16:43
Ah, I needed to reinstall XAMPP. Thank you!
– southpointingchariot
Sep 2 '12 at 17:41
Good that you found the fix. If you found this answer helpful then mark it as answered. Thanks
– devav2
Sep 2 '12 at 18:17
add a comment |
I've done everything that you've described as far as I can tell - still no luck. Any other thoughts or resources?
– southpointingchariot
Sep 2 '12 at 16:43
Ah, I needed to reinstall XAMPP. Thank you!
– southpointingchariot
Sep 2 '12 at 17:41
Good that you found the fix. If you found this answer helpful then mark it as answered. Thanks
– devav2
Sep 2 '12 at 18:17
I've done everything that you've described as far as I can tell - still no luck. Any other thoughts or resources?
– southpointingchariot
Sep 2 '12 at 16:43
I've done everything that you've described as far as I can tell - still no luck. Any other thoughts or resources?
– southpointingchariot
Sep 2 '12 at 16:43
Ah, I needed to reinstall XAMPP. Thank you!
– southpointingchariot
Sep 2 '12 at 17:41
Ah, I needed to reinstall XAMPP. Thank you!
– southpointingchariot
Sep 2 '12 at 17:41
Good that you found the fix. If you found this answer helpful then mark it as answered. Thanks
– devav2
Sep 2 '12 at 18:17
Good that you found the fix. If you found this answer helpful then mark it as answered. Thanks
– devav2
Sep 2 '12 at 18:17
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f183270%2flamp-uninstall-and-xampp%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
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
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown