在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
以前看过的安装nginx+php环境都带了mysql数据库了,这个是因为很多站长都是nginx+php+mysql都在同一台服务器了,那么今天我们是单独处理了,一个是nginx+php环境,然后mysql数据库安装在一 ** 立的服务器上了,下面我来给大家介绍一下配置 安装过程。 前端(nginx+php)ip:192.168.10.8 2.在前端安装php-fpm nginx和mysql-client 这里只说下安装mysql-client和php的编译安装. tar zxf mysql-5.1.63.tar.gz && cd mysql-5.1.63 ./configure --prefix=/usr/local/mysql --without-server 这里只需要加上--without-server就可以让mysql变成客户端了. make && make install 编译php的时候只需要加上--with-mysql=mysql客户端安装目录就可以了.这里我给出编译参数: ./configure --prefix=/usr/local/php --enable-fastcgi --enable-fpm --with-fpm-log=/var/log/php-fpm.log \ --with-fpm-conf=/etc/php-fpm.conf --with-fpm-pid=/var/run/php-fpm.pid --with-config-file-path=/etc \ --with-config-file-scan-dir=/etc/php.d --with-openssl --with-zlib --enable-bcmath --with-bz2 --with-curl \ --enable-ftp --with-gd --enable-gd-native-ttf --with-jpeg-dir --with-png-dir --with-gettext --with-mhash \ --enable-mbstring --with-mcrypt --enable-soap --enable-zip --with-iconv=/usr/local/libiconv \ --with-mysql=/usr/local/mysql --with-mysqli=/usr/local/mysql/bin/mysql_config --without-pear nginx的编译没有什么好说的了,我前面centos编译安装nginx+php-fpm+mysql这篇文章里已经有讲过了. 3.进行测试验证 GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY '123456'; 然后iptables上只允许192.168.10.8访问mysql端口,其他都拒绝.如: iptables -A RH-Firewall-1-INPUT -s 192.168.10.8 -p tcp -m tcp --dport 3306 -j ACCEPT iptables -A RH-Firewall-1-INPUT -p tcp --dport 3306 -j DROP services iptables save services iptables restart 然后在192.168.10.8上进行测试,是否可以远程连上mysql 现在我们加个php页面来测试php是否可以连上mysql,脚本如下: <?php $link=mysql_connect("192.168.10.5","root","123456"); if(!$link) echo "bad!" ; else echo "ok!" ; mysql_close(); ?> 成功的话是ok!的输出,失败的话是bad!的输出,我这里是成功的 mysql 5.5.x的只安装客户端. 需要的软件:libiconv-1.14.tar.gz mysql-5.5.25a.tar.gz 2.安装libiconv ./configure --prefix=/usr/local/libiconv
make && make install
3.只安装mysql客户端 cmake . && make mysqlclient libmysql
make install
这样就只安装了mysql客户端,然后可以输入whereis mysql来查看mysql安装位置. 好了,可以看到跟yum安装的差不多. 4.安装php ./configure --prefix=/usr/local/php --enable-fastcgi --enable-fpm --with-fpm-log=/var/log/php-fpm.log --with-fpm-conf=/etc/php-fpm.conf \ --with-fpm-pid=/var/run/php-fpm.pid --with-config-file-path=/etc --with-config-file-scan-dir=/etc/php.d \ --with-openssl --with-zlib --enable-bcmath --with-bz2 --with-curl --enable-ftp \ --with-gd --enable-gd-native-ttf --with-jpeg-dir --with-png-dir --with-gettext --with-mhash \ --enable-mbstring --with-mcrypt --enable-soap --enable-zip --with-iconv=/usr/local/libiconv \ --with-mysql=shared,/usr --with-mysqli=shared,/usr/bin/mysql_config 大家可以看最后一行,--with-mysql=shared,/usr --with-mysqli=shared,/usr/bin/mysql_config这就是跟以前不同的行.好了,剩下的就不写了 |
2022-08-17
2022-11-06
2022-08-17
2022-07-29
2022-07-18
请发表评论