Home > Backend Development > PHP Tutorial > symfony框架,怎么配置默认的mysql数据库

symfony框架,怎么配置默认的mysql数据库

WBOY
Release: 2016-06-23 13:47:06
Original
703 people have browsed it

情况是这样的,原本php跟mysql数据库部署在一台服务器上,所以,php里面用到数据库的地方都用的是:localhost

现在要把mysql数据库剥离出去到另一台服务器上,假设另一台ip为:192.168.28.158,默认端口号。

求教,怎么修改php里关于数据库地址的配置文件?用的是symfony1.4框架。


回复讨论(解决方案)

projectname/config/databases.yml文件我改了,但是似乎没效果,可能没改对,也可能还有其他地方要改。

databases.yml文件:
all:
  doctrine:
    class: sfDoctrineDatabase
    param:
      dsn: 'mysql:host=localhost;dbname=authpuppy'
      username: authpuppy
      password: authpuppydev

注:我把dsn: 'mysql:host=localhost;dbname=authpuppy'改成了dsn: 'mysql:host=192.168.28.158;dbname=authpuppy'

有没有高手来指点下啊。

连个回复的人都没有,先到先给分啊~~~

问题已解决,是因为缓存没有清掉。

用symfony的人看来不多啊。都没人回。

用symfony的人看来不多啊。都没人回。


-----------------------------------------------------------------
给分结贴,自己也顺便收回一些~~
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template