用Ubuntu做WEB服务器相关设置[多图](2)

sudo gedit /etc/mysql/my.cnf

找到

bind-address = 127.0.0.1

用#注释掉,象这样

#bind-address = 127.0.0.1

MySql默认没有设置root密码,本机的root用户也没有密码,有风险是吧,这样

mysqladmin -u root password your-new-password

mysqladmin -h root@local-machine-name -u root -p password your-new-password(这里我怎么也连接不上mysql服务器,最后在mysql-admin里面改的)

sudo /etc/init.d/mysql restart

安装MYSQL for Apache HTTP Server

sudo apt-get install libapache2-mod-auth-mysql

sudo apt-get install php5-mysql

sudo apt-get install phpmyadmin

要让PHP与MySql一起工作,编辑

sudo gedit /etc/php5/apache2/php.ini

取消对;extension=mysql.so的注释,象这样

extension=mysql.so

保存文件,然后

sudo /etc/init.d/apache2 restart

测试:

2 GD库的安装

sudo apt-get install php5-gd

记得装完重启apache

sudo /etc/init.d/apache2 restart

Ubuntu Server下安装Zend Optimizer

1,下载:

wget

2,解压:

tar -zxvf ZendOptimizer-.3.3.3-linux-glibc23-i386.tar.gz

3,安装:

cd ZendOptimizer-.3.3.3-linux-glibc23-i386

sudo ./install

4,过程:

用Ubuntu做WEB服务器相关设置[多图]

填写Apache的执行文件路径.

用Ubuntu做WEB服务器相关设置[多图]

选择Apache的版本

用Ubuntu做WEB服务器相关设置[多图]

一些更改及备份说明.

用Ubuntu做WEB服务器相关设置[多图]

安装成功及提示重启Apache.

linux

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wyxjgz.html