最佳答案
我遵循以下教程: http://davidtsadler.com/archives/2012/06/03/how-to-install-magento-on-ubuntu/
在某个时刻,它告诉我执行以下命令:
sudo bash -c "cat >> /etc/apache2/sites-available/magento-store.com <<EOF
<VirtualHost *:80>
ServerName localhost.magento-store.com
ServerAlias www.localhost.magento-store.com
DocumentRoot /home/dev/public_html/magento-store.com/public
LogLevel warn
ErrorLog /home/dev/public_html/magento-store.com/log/error.log
CustomLog /home/dev/public_html/magento-store.com/log/access.log combined
</VirtualHost>
EOF"
这个命令做了什么,我怎样才能取消它?
我重新启动了计算机,它似乎还在运行。我在 .bashrc
和 .profile
里面找了,但是没有找到。