Windows上安装Apache, PHP, MySQL
作者 佚名技术
来源 Linux系统
浏览
发布时间 2012-05-09
好了之后,可以用mysql客户端测试一下.打开DOS窗口: C:Documents and Settingsuser>mysql -u root -h localhost -p Enter password: ******** Welcome to the MySQL monitor. Commands end with ; or g. Your MySQL connection id is 2 Server version: 5.1.22-rc-community MySQL Community Server (GPL) Type ''help;'' or ''h'' for help. Type ''c'' to clear the buffer. mysql> show databases; -------------------- | Database | -------------------- | information_schema | | mysql | | test | -------------------- 3 rows in set (0.00 sec) mysql> 7. 安装PHPMyAdmin PHPMyAdmin是基于Web的MySQL管理系统,对不熟悉MySQL的人来说是一个不错的工具.到PHPMyAdmin的官方网站上下载最新的版本:[url]http://www.phpmyadmin.net/home_page/downloads.php[/url] phpMyAdmin是基于WEB的,解压到Apache设置的DocumentRoot目录中. 解压之后,找到config.sample.inc.php这个文件,拷贝一份并命名为config.inc.php,然后进行编辑: 找到这一行: $cfg[''Servers''][$i][''auth_type''] = ''cookie''; 将其改为: $cfg[''Servers''][$i][''auth_type''] = ''http''; 这样每次使用phpMyAdmin登录数据库时,就会弹出输入用户名和密码的对话框,用户名就使用root(当然如果配置了其他用户也可以使用),密码就使用安装MySQL时设置的密码. 当然也可以将密码直接写在配置文件里面,这样就不会每次都输入密码.设置如下: /* Authentication type */ $cfg[''Servers''][$i][''auth_type''] = ''config''; $cfg[''Servers''][$i][''user''] = ''root''; $cfg[''Servers''][$i][''password''] = ''your_password''; |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
关于Windows上安装Apache, PHP, MySQL的所有评论