PostgreSQL
 sql >> Datenbank >  >> RDS >> PostgreSQL

Wie ändere ich eine Datenbank mit Symfony 2.0 auf postgresql?

Postgresql unter Debian installieren:

apt-get install postgresql postgresql-client
apt-get install php5-pgsql
adduser mypguser
su - postgres
psql
CREATE USER mypguser WITH PASSWORD 'mypguserpass';
CREATE DATABASE mypgdatabase;
GRANT ALL PRIVILEGES ON DATABASE mypgdatabase to mypguser;
\q

Fügen Sie in /etc/php5/apache2/php.ini Folgendes hinzu:(dies ist tatsächlich optional)

extension=pdo.so
extension=php_pdo_pgsql.so

Ändern Sie die Datei symfony apps/config/paramters.ini:

[parameters]
    database_driver:    pdo_pgsql
    database_host:      localhost
    database_port:      null
    database_name:      mypgdatabase
    database_user:      mypguser
    database_password:  mypguserpass

Laden Sie Ihr Projekt neu:

php bin/vendors update
php app/console assets:install web
php app/console doctrine:schema:create
php app/console doctrine:fixtures:load
chmod 777 -R app/cache app/logs

Sie sind fertig!

Referenzen:

Symfony-Dokumentation zum Konfigurieren von Datenbanken

Postgresql-Installation unter Debian