维护指南
本章提供的是本应用自身特殊等维护与配置。而配置域名、HTTPS设置、数据迁移、应用集成、Web Server 配置、Docker 配置、修改数据库连接、服务器上安装更多应用、操作系统升级、快照备份等操作通用操作请参考:管理员指南 和 安装后配置 相关章节。
场景
将数据转移到数据盘
默认情况下 C:\websoft9\phpStudy\PHPTutorial\WWW 是在系统盘的,当需要转移到数据盘,步骤如下:
转移网站数据
- 停止 Apache 服务
- 将 C:\websoft9\phpStudy\PHPTutorial\WWW 下所有文件拷贝新的目录,假如为:D:\wwwroot
- 修改 C:\websoft9\phpStudy\PHPTutorial\Apache\conf\extra\httpd-vhosts.conf 文件,将“C:\websoft9\phpStudy\PHPTutorial\WWW”修改为“D:\wwwroot”
- 重启Apache后生效
转移数据库文件
-
停止MySQL服务
-
将 C:\websoft9\phpStudy\PHPTutorial\MySQL\data 下所有文件拷贝到新目录,例如:D:\data
-
修改 C:\websoft9\phpStudy\PHPTutorial\MySQL\my.ini 文件,将以下语句
datadir="C:\websoft9\phpStudy\PHPTutorial\MySQL\data"
log-error="C:\websoft9\phpStudy\PHPTutorial\MySQL\data\mysqld.log"