vBulletin에서 종속 데이터베이스 구성을 설정하는 방법은 무엇입니까? 나는 다음과 같이 설정했다 :vBulletin에서 슬레이브 데이터베이스 구성을 설정하는 방법은 무엇입니까?
$ config [ 'Database'] [ 'dbtype'] = 'mysql';
$ config [ 'Database'] [ 'dbname'] = 'xyz';
$ config [ 'Database'] [ 'tableprefix'] = 'vbulletin1_';
$ config [ 'Database'] [ 'technicalemail'] = '[email protected]';
$ config [ 'Database'] [ 'force_sql_mode'] = false;
$ config [ 'MasterServer'] [ 'servername'] = 'xyz';
$ config [ 'MasterServer'] [ 'port'] = 3306;
$ config [ 'MasterServer'] [ 'username'] = 'x';
$ config [ 'MasterServer'] [ 'password'] = 'xxxx';
$ config [ 'MasterServer'] [ 'usepconnect'] = 0;
$ config [ 'SlaveServer'] [ 'servername'] = 'abc';
$ config [ 'SlaveServer'] [ 'port'] = 3306;
$ config [ 'SlaveServer'] [ 'username'] = 'a';
$ config [ 'SlaveServer'] [ 'password'] = 'xxxx';
$ config [ 'SlaveServer'] [ 'usepconnect'] = 0;