Home Backend Development PHP Tutorial PHP开发环境配备系列(四)-XAMPP常用信息

PHP开发环境配备系列(四)-XAMPP常用信息

Jun 13, 2016 pm 01:25 PM
apache conf filezilla mysql xampp

PHP开发环境配置系列(四)-XAMPP常用信息

??? 完成了前面三篇后(《 PHP开发环境配置系列 (一)-Apache无法启动(SSL冲突)》 、《PHP开发环境配置系列(二)-XDebug设置》 、《PHP开发环境配置系列(三)-项目源码映射》 ),今天补充一下XAMPP的一些常用信息(《PHP开发环境配置系列(四)-XAMPP常用信息》 ),有备无患。

?

??? 1. XAMPP的启动路径
??? xampp\xampp-control.exe

??? 2. XAMPP服务的启动和停止脚本路径
??? 启动 Apache 和 MySQL:xampp\xampp_start.exe
??? 停止 Apache 和 MySQL:xampp\xampp_stop.exe
??? 启动 Apache:xampp\apache_start.bat
??? 停止 Apache:xampp\apache_stop.bat
??? 启动 MySQL:xampp\mysql_start.bat
??? 停止 MySQL:xampp\mysql_stop.bat
??? 启动 Mercury 邮件服务器:xampp\mercury_start.bat
??? 设置 FileZilla FTP 服务器:xampp\filezilla_setup.bat
??? 启动 FileZilla FTP 服务器:xampp\filezilla_start.bat
??? 停止 FileZilla FTP 服务器:xampp\filezilla_stop.bat

??? 3. XAMPP的配置文件路径
??? Apache 基本配置:xampp\apache\conf\httpd.conf
??? Apache SSL:xampp\apache\conf\ssl.conf
??? Apache Perl:xampp\apache\conf\perl.conf
??? Apache Tomcat:xampp\apache\conf\java.conf
??? Apache Python:xampp\apache\conf\python.conf
??? PHP:xampp\php\php.ini
??? MySQL:xampp\mysql\bin\my.ini
??? phpMyAdmin:xampp\phpMyAdmin\config.inc.php
??? FileZilla FTP 服务器:xampp\FileZillaFTP\FileZilla Server.xml
??? Mercury 邮件服务器基本配置:xampp\MercuryMail\MERCURY.INI
??? Sendmail:xampp\sendmail\sendmail.ini

??? 4. XAMPP的其它常用路径
??? 网站根目录的默认路径:xampp\htdocs
??? MYSQL数据库默认路径:xampp\mysql\data

??? 5. 卸载XAMPP
??? 执行xamppuninstall.exe即可

??? 6. MySQL:?
??? User: root?? Password:(空)

??? 7. FileZilla FTP:?
??? User: newuser?? Password: wampp
??? User: anonymous?? Password: some@mail.net

??? 8. Mercury:
??? Postmaster: postmaster (postmaster@localhost)
??? Administrator: Admin (admin@localhost)
??? TestUser: newuser?? Password: wampp

??? 9. WEBDAV:
??? User: wampp?? Password: xampp

?

?

??? 本文地址:http://ryan-d.iteye.com/blog/1544601

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to set the cgi directory in apache How to set the cgi directory in apache Apr 13, 2025 pm 01:18 PM

To set up a CGI directory in Apache, you need to perform the following steps: Create a CGI directory such as "cgi-bin", and grant Apache write permissions. Add the "ScriptAlias" directive block in the Apache configuration file to map the CGI directory to the "/cgi-bin" URL. Restart Apache.

How to view your apache version How to view your apache version Apr 13, 2025 pm 01:15 PM

There are 3 ways to view the version on the Apache server: via the command line (apachectl -v or apache2ctl -v), check the server status page (http://<server IP or domain name>/server-status), or view the Apache configuration file (ServerVersion: Apache/<version number>).

What to do if the apache80 port is occupied What to do if the apache80 port is occupied Apr 13, 2025 pm 01:24 PM

When the Apache 80 port is occupied, the solution is as follows: find out the process that occupies the port and close it. Check the firewall settings to make sure Apache is not blocked. If the above method does not work, please reconfigure Apache to use a different port. Restart the Apache service.

Centos install mysql Centos install mysql Apr 14, 2025 pm 08:09 PM

Installing MySQL on CentOS involves the following steps: Adding the appropriate MySQL yum source. Execute the yum install mysql-server command to install the MySQL server. Use the mysql_secure_installation command to make security settings, such as setting the root user password. Customize the MySQL configuration file as needed. Tune MySQL parameters and optimize databases for performance.

How to run nginx apache How to run nginx apache Apr 14, 2025 pm 12:33 PM

To get Nginx to run Apache, you need to: 1. Install Nginx and Apache; 2. Configure the Nginx agent; 3. Start Nginx and Apache; 4. Test the configuration to ensure that you can see Apache content after accessing the domain name. In addition, you need to pay attention to other matters such as port number matching, virtual host configuration, and SSL/TLS settings.

How to build a Zookeeper cluster in CentOS How to build a Zookeeper cluster in CentOS Apr 14, 2025 pm 02:09 PM

Deploying a ZooKeeper cluster on a CentOS system requires the following steps: The environment is ready to install the Java runtime environment: Use the following command to install the Java 8 development kit: sudoyumininstalljava-1.8.0-openjdk-devel Download ZooKeeper: Download the version for CentOS (such as ZooKeeper3.8.x) from the official ApacheZooKeeper website. Use the wget command to download and replace zookeeper-3.8.x with the actual version number: wgethttps://downloads.apache.or

How to install mysql in centos7 How to install mysql in centos7 Apr 14, 2025 pm 08:30 PM

The key to installing MySQL elegantly is to add the official MySQL repository. The specific steps are as follows: Download the MySQL official GPG key to prevent phishing attacks. Add MySQL repository file: rpm -Uvh https://dev.mysql.com/get/mysql80-community-release-el7-3.noarch.rpm Update yum repository cache: yum update installation MySQL: yum install mysql-server startup MySQL service: systemctl start mysqld set up booting

How to solve the problem that apache cannot be started How to solve the problem that apache cannot be started Apr 13, 2025 pm 01:21 PM

Apache cannot start because the following reasons may be: Configuration file syntax error. Conflict with other application ports. Permissions issue. Out of memory. Process deadlock. Daemon failure. SELinux permissions issues. Firewall problem. Software conflict.

See all articles