Windows Server配置Apache(WAMPServer)

2023-01-20 20:48:02 浏览数 (1)

1、安装VC库

https://learn.microsoft.com/en-US/cpp/windows/latest-supported-vc-redist

https://github.com/abbodi1406/vcredist/releases

2、安装火狐浏览器

https://www.mozilla.org/en-US/firefox/all/#product-desktop-release

3、安装notepad

https://github.com/notepad-plus-plus/notepad-plus-plus/releases

4、安装WAMPServer

https://sourceforge.net/projects/wampserver/files/latest/download

5、修改MySQL/MariaDB的root密码(原始密码为空)

MariaDB

代码语言:javascript复制
use mysql;
select user,host from mysql.user;
ALTER USER 'root'@'localhost' IDENTIFIED BY 'Your#@123Fuzamima';
ALTER USER 'root'@'::1' IDENTIFIED BY 'Your#@123Fuzamima';
ALTER USER 'root'@'127.0.0.1' IDENTIFIED BY 'Your#@123Fuzamima';
ALTER USER 'root'@'10_255_4_79' IDENTIFIED BY 'Your#@123Fuzamima'; //host以实际为准
flush privileges;

MySQL

代码语言:javascript复制
use mysql;
select user,host from mysql.user;
alter user 'root'@'localhost' identified by 'Your#@123Fuzamima';
flush privileges;

6、安装discuzx3.5

以上可参考录屏:https://cloud.tencent.com/developer/video/75082

0 人点赞