Manuale:MySQL
↑ Manuale: Indice | Layout del database MediaWiki | MySQL/it |
Il motore di database MySQL è il backend di database più comunemente utilizzato per MediaWiki. Poiché MySQL era il sistema di gestione del database relazionale utilizzato nei siti web di Wikimedia Foundation, è ben supportato in MediaWiki. Gran parte dei consigli per MySQL e per MariaDB si applicano a entrambi.
See Compatibility#Database for a list of supported versions.
Connessione a MySQL
mysql -u wikiuser -p my_wiki
Change wikiuser and my_wiki to the username and database name for your wiki ($wgDBuser
and $wgDBname
).
When prompted, enter your password.
Example
$ mysql -u root -p my_wiki
Enter password:
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 150
Server version: 5.6.24-0ubuntu2 (Ubuntu)
...
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql>.
Installazione
- For further information, see Manuale:Installazione MediaWiki#Creare un database
Basilarmente, se MySQL è installato, lo script di installazione può creare il database per te. Basta fornire lo script con la tua password di root di MySQL (per default vuota).
Manutenzione
Multiple maintenance scripts are included in the /maintenance/
directory of your MediaWiki installation.
Some of these scripts are provided to refresh parts of the database as one-time operations.
Import database
- For further information, see Manual:Importing XML dumps
Export database
- For further information, see Manuale:Fare una copia di sicurezza di una wiki
See also
- Manual:MysqlUpdater.php
- Manual:Security#General MySQL recommendations
- Tool to convert SQLite MediaWiki database into MySQL