0

Is there a way to update the mysqlnd_ms configuration on a Linux server (PHP-FPM) without forcing a restart?

For example, if I add or remove a slave database, I'd like that to be updated in the PHP-FPM server without forcing a restart.

Kae Verens
  • 4,076
  • 3
  • 21
  • 41

1 Answers1

0

Reloading (instead of restarting) re-reads configuration files, including the MySQLND_MS settings.

Example: service php-fpm reload

Kae Verens
  • 4,076
  • 3
  • 21
  • 41