This articles has been requested to be deleted.
Wednesday, January 6th 2010, 7:59pm
|
|
Bash |
1 |
|
|
|
Bash |
1 |
apt-get update |
|
|
Bash |
1 |
apt-get upgrade |
|
|
Bash |
1 |
|
|
|
Bash |
1 |
|
|
|
Bash |
1 |
|
|
|
Bash |
1 |
apt-get install mysql-common mysql-server mysql-server-5.0 |
|
|
Bash |
1 |
mysqladmin -u root -p password ‘DEIN_NEUES_KENNWORT’ |
|
|
Bash |
1 |
/etc/init.d/apache2 restart |

|
|
Bash |
1 |
mcedit /etc/apache2/sites-available/default |
|
|
Bash |
1 2 |
mcedit /var/www/index.php Inhalt von index.php: <?php phpinfo(); ?> |
|
|
Bash |
1 |
a2enmod rewrite |
|
|
Bash |
1 |
/etc/init.d/apache2 restart |
|
|
Bash |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
#/etc/apache2/sites-available/default NameVirtualHost * ServerAdmin webmaster@localhost DocumentRoot /var/www/ AddDefaultCharset UTF-8 <VirtualHost *> ServerName www.meinedomain.de ServerAdmin webmaster@meinedomain.de DocumentRoot /var/www/main Options +FollowSymLinks +SymLinksIfOwnerMatch </VirtualHost> <VirtualHost *> ServerName user.meinedomain.de ServerAdmin webmaster@meinedomain.de DocumentRoot /var/www/userbereich Options +FollowSymLinks +SymLinksIfOwnerMatch </VirtualHost> <VirtualHost *> ServerName stats.meinedomain.de ServerAdmin webmaster@meinedomain.de DocumentRoot /var/www/stats Options +FollowSymLinks +SymLinksIfOwnerMatch </VirtualHost> |

|
|
Bash |
1 |
|
