Mac xampp

来源:互联网 发布:手机登不了淘宝怎么办 编辑:程序博客网 时间:2024/06/09 21:52
1 虽然自带apache,但是我禁用了(禁用方法:

sudo launchctl unload -w /System/Library/LaunchDaemons/org.apache.httpd.plist,反之用load

),因为用到mysql,而且之前windows用的xampp

2 安装好后mysql启动不了,

phpmyadmin出错,解决方法:

sudo /Applications/XAMPP/xamppfiles/bin/mysql.server start(虽然有plist但是还是觉得开启时用命令行吧)

3 root用户设置密码

进入mysql user 执行mysql语句update user set password=password(’密码‘) where User=’root‘(密码为你的密码)

4 打开应用程序xampp文件夹下的manager显示原身打开phpMyAdmin 修改config.inc.php中的
$cfg['Servers'][$i]['auth_type']     =  'config'; 改为:$cfg['Servers'][$i]['auth_type']   =  'http'; 

$cfg['Servers'][$i]['password'] = ''; 改为: $cfg['Servers'][$i]['password'] = '密码' 

5 重启manager.app

0 0