Lamp(rpm)安裝:
一:編輯本地yum用於安裝軟件包:
[root@localhost ~]# cd /mnt/cdrom/
[root@localhost ~]# mount /dev/cdrom /mnt/cdrom/
[root@localhost ~]# cd /mnt/cdrom/Server/
[root@localhost Server]# vim /etc/yum.repos.d/rhel-debuginfo.repo #編輯本地yum
二:安裝http服務器:
[root@localhost Server]# yum install httpd -y #使用yum安裝http服務,-y表示取消交互
[root@localhost Server]# service httpd start #啟動http
[root@localhost Server]# chkconfig httpd on #開機自動啟動http
三:安裝mysql數據庫:
[root@localhost Server]# yum list all |grep mysql #查看與mysql相關的安裝包
[root@localhost Server]# yum install mysql -y #安裝mysql工具包
[root@localhost Server]# yum install mysql-server -y #安裝mysql-server服務器
[root@localhost Server]# service mysqld start #啟動mysql服務
[root@localhost Server]# chkconfig mysqld on #開機自動啟動mysql
[root@localhost Server]# netstat -tupln |less #分頁查看端口
[root@localhost Server]# mysqladmin -u root -p password '123' #為數據庫創建口令
[root@localhost Server]# mysql -u root -p #使用口令登錄數據庫
四:安裝php:
[root@localhost Server]# yum list all |grep php #查看與php相關的安裝包
[root@localhost Server]# yum install php -y #安裝php主程序
[root@localhost Server]# yum install php-mysql -y #安裝php與mysql的連接包
五:查看http調用php模塊:
[root@localhost Server]# cd /etc/httpd/conf.d/ #切換到該目錄中查看http調用http模塊
[root@localhost conf.d]# cat php.conf
六:測試http能否調用php:
[root@localhost conf.d]# cd /var/www/html/
[root@localhost html]# vim index.php #創建該文件,測試http能否調用php
[root@localhost html]# service httpd restart
七:測試php能否調用mysql:
[root@localhost html]# vim index.php #再次編輯該文件,查看php能否成功調用mysql
八:安裝phpmyadmin,通過php網頁形式來管理mysql
[root@localhost ~]# unzip phpMyAdmin-2.11.10.1-all-languages.zip #解壓
[root@localhost ~]# mv phpMyAdmin-2.11.10.1-all-languages /var/www/html/phpmymdmin
#將該文件移動到/var/www/html中,並改名為phpMyAdmin
[root@localhost ~]# cd /var/www/html/
[root@localhost phpmyadmin]# cp config.sample.inc.php config.inc.php
[root@localhost phpmyadmin]# vim config.inc.php #修改該文件如圖:
[root@localhost phpmyadmin]# service httpd restart
九:根據網頁提示安裝php-mbstring
[root@localhost ~]# yum list all |grep php
[root@localhost ~]# yum install php-mbstring -y #安裝mbstring
[root@localhost ~]# yum localinstall libmcrypt-2.5.7-5.el5.i386.rpm
php-mcrypt-5.1.6-5.el5.i386.rpm --nogpgcheck #使用localinstall安裝光盤中手動導入的rpm包,這些軟件包無法獲取公鑰,使用--nogpgcheck,取消簽名檢測
安裝php-mbstring及mcrypt後,沒有了錯誤提示。這樣就可以通過網頁的形式管理mysql
本文出自 “. . .” 博客,請務必保留此出處http://5503845.blog.51cto.com/5493845/992166