1. Ubuntu环境中安装LAMP组件
系统->系统管理->新立得软件包管理器, 打开新立得,编辑 –> 使用任务分组标记软件包 –> 勾选 LAMP Server。
2.安装phpmyadmin
系统->系统管理->新立得软件包管理器,打开新立得搜索phpmyadmin,标记安装。
3.mysql的启动:mysql -u root -p,然后根据提示,输入password即可。
4.重启apache
sudo /etc/init.d/apache2 restart
如果出现:
* Restarting web server apache2
apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1 for ServerName
apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1 for ServerName
继续sudo gedit /etc/apache2/apache2.conf
在文件后面加上:ServerName 127.0.0.1
使用 http://localhost/phpmyadmin可以使用phpmyadmin进行管理。
我在安装php的商店系统的时候,提示缺少gdlib,在ubuntu中是php5-gd,在新利得中即可找到。