下载安装:
http://www.apachefriends.org/en/xampp-linux.html#374
Step 2: Installation
After downloading simply type in the following commands:
- Go to a Linux shell and login as the system administrator root:
su
- Extract the downloaded archive file to /opt:
tar xvfz xampp-linux-1.7.7.tar.gz -C /opt
Warning: Please use only this command to install XAMPP. DON'T use any Microsoft Windows tools to extract the archive, it won't work.
Warning 2: already installed XAMPP versions get overwritten by this command.
That's all. XAMPP is now installed below the
/opt/lampp directory.
Step 3: Start
To start XAMPP simply call this command:
/opt/lampp/lampp start
You should now see something like this on your screen:
Starting XAMPP 1.7.7...
LAMPP: Starting Apache...
LAMPP: Starting MySQL...
LAMPP started.
Ready. Apache and MySQL are running.
If you get any error messages please take a look at the Linux FAQ.
OK, that was easy but how can you check that everything really works? Just type in the following URL at your favourite web browser:
http://localhost
Access forbidden!
解决方法: 打开httpd-xampp.conf(/opt/lampp/etc/extra/httpd-xampp.conf) # New XAMPP security concept # <LocationMatch “^/(?i:(?:xampp|security|licenses|phpmyadmin|webalizer|server-status|server-info))”> Order deny,allow Deny from all Allow from ::1 127.0.0.0/8 \ fc00::/7 10.0.0.0/8 172.16.0.0/12 192.168.0.0/16 \ 81.196.40.94/32 ErrorDocument 403 /error/XAMPP_FORBIDDEN.html.var </LocationMatch> 需要注释Deny from all,即 #Deny from all 注:需要重启apache[/opt/lampp/lampp restartapache]
posted on 2012-04-19 22:16
长春语林科技 阅读(1060)
评论(0) 编辑 收藏 所属分类:
linux