phpmyadmin-MYSQL管理工具安装

简述:phpMyAdmin 是一个用PHP编写的,可以通过 web 方式控制和操作 MySQL 数据库。通过 phpMyAdmin 可以完全对数据库进行操作,例如建立、复制、删除数据等等。

系统环境:CentOS 5.5 x64

所需软件:
phpMyAdmin-2.11.11-all-languages.tar.gz
mysql-5.0.56.tar.gz
mcrypt-2.6.8.tar.gz
libmcrypt-2.5.8.tar.gz
mhash-0.9.9.9.tar.bz2
 
MYSQL安装

  
  
  
  
  1. groupadd mysql 
  2. useradd -s /sbin/nologin -g mysql -M mysql 
  3. tar zxvf mysql-5.0.56.tar.gz 
  4. cd mysql-5.0.56 
  5. ./configure 
  6. --prefix=/usr/local/mysql 
  7. --with-unix-socket-path=/usr/local/mysql/tmp/mysql.sock 
  8. --localstatedir=/usr/local/mysql/data 
  9. --enable-assembler 
  10. --enable-thread-safe-client 
  11. --with-mysqld-user=mysql 
  12. --with-big-tables 
  13. --without-debug 
  14. --with-pthread 
  15. --enable-assembler 
  16. --with-extra-charsets=complex 
  17. --with-readline 
  18. --with-ssl 
  19. --with-embedded-server 
  20. --enable-local-infile 
  21. --with-plugins=partition,innobase 
  22. --with-plugin-PLUGIN 
  23. --with-mysqld-ldflags=-all-static 
  24. --with-client-ldflags=-all-static 
  25.   
  26.  
  27. make 
  28. make install 
  29. cp support-files/my-small.cnf /etc/my.cnf 
  30. mkdir -p /usr/local/mysql/data 
  31. /usr/local/mysql/bin/mysql_install_db --user=mysql 
  32. chgrp -R mysql /usr/local/mysql 
  33. /usr/local/mysql/bin/mysqld_safe --user=mysql
  34. ps -ef |grep mysql 
  35. echo "export PATH=$PATH:/usr/local/mysql/bin/">>/etc/profile 
  36. source /etc/profile 
  37. cp support-files/mysql.server /etc/init.d/mysqld 
  38. chmod 755 /etc/init.d/mysqld 
  39. chkconfig --add mysqld 
  40. service mysqld restart 
  41. cd .. 
  42.   
  43. mysqladmin -uroot password elain 
  44. mysql -uroot -p 


#apache、php安装

  
  
  
  
  1. yum install -y httpd php* 


 
phpMyAdmin安装

  
  
  
  
  1. wget http://cdnetworks-kr-2.dl.sourceforge.net/project/phpmyadmin/phpMyAdmin/3.4.3.1/phpMyAdmin-3.4.3.1-all-languages.tar.gz 
  2. tar zxvf phpMyAdmin-2.11.11-all-languages.tar.gz 
  3.   
  4. mv phpMyAdmin-2.11.11-all-languages phpmyadmiin 
  5. cp -Rf phpmyadmin /var/www/html/ 
  6.   
  7. cd /var/www/html/phpmyadmin 
  8. cp config.sample.inc.php config.inc.php 

#配置

  
  
  
  
  1. vi config.inc.php    #修改以下行 
  2.   
  3. 17 $cfg['blowfish_secret'] = 'elain'; 
  4.   
  5. 31 $cfg['Servers'][$i]['host'] = '127.0.0.1'; 
  6.   
  7. 37 // $cfg['Servers'][$i]['controluser'] = 'root'; 
  8.   
  9. 38 // $cfg['Servers'][$i]['controlpass'] = 'elain'; 


 
修改以上四行即可
 
重启httpd
 
用浏览器访问http://ip/phpadmin  

扩展阅读:
http://www.phpmyadmin.net(英文站点)

 

转载请注明: 转载自http://www.elain.org

本文链接地址:phpmyadmin-MYSQL管理工具安装

 

你可能感兴趣的:(Web,mysql,数据库,phpMyAdmin,休闲)