Manual:MySQL
↑ Manual:Conteúdos | Disposição da base de dados do MediaWiki | MySQL/pt |
Os mecanismos da base de dados MySQL e MariaDB são a "camada de acesso aos dados" (back end) da base de dados mais utilizada para o MediaWiki. Como MariaDB é o sistema de gestão da base de dados relacional utilizado pelos sites da Web da Fundação Wikimedia, esta é bem suportada no MediaWiki. Much of the advice for MySQL and for MariaDB apply to each other.
See Compatibility#Database for a list of supported versions.
Ligar a MySQL ou MariaDB
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>.
Instalação
- Para obter mais informações, consulte Manual:Instalar o MediaWiki#Criar uma base de dados .
Basically, if MySQL is installed, the installation script can create a database for you. Just supply the script with your MySQL root password (by default blank).
Maintenance
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
- Para obter mais informações, consulte Manual:Importing XML dumps .
Export database
- Para obter mais informações, consulte Manual:Efetuar Cópia de Segurança de uma Wiki .
See also
- Manual:MysqlUpdater.php
- Manual:Security#General MySQL recommendations
- Tool to convert SQLite MediaWiki database into MySQL