Mudanças entre as edições de "Phpmyadmin"
De MochilaWiki
Ir para navegaçãoIr para pesquisar(7 revisões intermediárias pelo mesmo usuário não estão sendo mostradas) | |||
Linha 1: | Linha 1: | ||
+ | Página do projeto | ||
+ | https://www.phpmyadmin.net/ | ||
+ | |||
+ | == instalando == | ||
+ | <source lang="bash"> | ||
+ | wget -c https://files.phpmyadmin.net/phpMyAdmin/4.6.3/phpMyAdmin-4.6.3-all-languages.zip | ||
+ | unzip phpMyAdmin-4.6.3-all-languages.zip | ||
+ | mv phpMyAdmin-4.6.3-all-languages /usr/share/paineldb | ||
+ | chown -R www-data: /usr/share/paineldb | ||
+ | </source> | ||
+ | |||
+ | == Criando banco == | ||
+ | <source lang="mysql"> | ||
+ | source /usr/share/paineldb/sql/create_tables.sql | ||
+ | GRANT SELECT, INSERT, DELETE, UPDATE ON `phpmyadmin`.* TO 'pma'@localhost identified by 'senhadb'; | ||
+ | </source> | ||
+ | |||
+ | == exemplo de configuração == | ||
+ | coloque no arquivo config.inc.php | ||
+ | |||
+ | <?php | ||
+ | $cfg['blowfish_secret'] = 'senha'; | ||
+ | $i = 0; | ||
+ | $i++; | ||
+ | $cfg['DefaultLang'] = 'pt_BR'; | ||
+ | $cfg['Servers'][$i]['auth_type'] = 'cookie'; | ||
+ | $cfg['Servers'][$i]['host'] = 'localhost'; | ||
+ | $cfg['Servers'][$i]['connect_type'] = 'tcp'; | ||
+ | $cfg['Servers'][$i]['compress'] = false; | ||
+ | $cfg['Servers'][$i]['extension'] = 'mysqli'; | ||
+ | $cfg['Servers'][$i]['AllowNoPassword'] = false; | ||
+ | $cfg['Servers'][$i]['controlhost'] = 'localhost'; | ||
+ | $cfg['Servers'][$i]['controluser'] = 'pma'; | ||
+ | $cfg['Servers'][$i]['controlpass'] = 'senhadb'; | ||
+ | $cfg['Servers'][$i]['pmadb'] = 'phpmyadmin'; | ||
+ | $cfg['Servers'][$i]['bookmarktable'] = 'pma__bookmark'; | ||
+ | $cfg['Servers'][$i]['relation'] = 'pma__relation'; | ||
+ | $cfg['Servers'][$i]['table_info'] = 'pma__table_info'; | ||
+ | $cfg['Servers'][$i]['table_coords'] = 'pma__table_coords'; | ||
+ | $cfg['Servers'][$i]['pdf_pages'] = 'pma__pdf_pages'; | ||
+ | $cfg['Servers'][$i]['column_info'] = 'pma__column_info'; | ||
+ | $cfg['Servers'][$i]['history'] = 'pma__history'; | ||
+ | $cfg['Servers'][$i]['tracking'] = 'pma__tracking'; | ||
+ | $cfg['Servers'][$i]['designer_coords'] = 'pma__designer_coords'; | ||
+ | $cfg['Servers'][$i]['userconfig'] = 'pma__userconfig'; | ||
+ | $cfg['Servers'][$i]['recent'] = 'pma__recent'; | ||
+ | $cfg['Servers'][$i]['table_uiprefs'] = 'pma__table_uiprefs'; | ||
+ | $cfg['Servers'][$i]['users'] = 'pma__users'; | ||
+ | $cfg['Servers'][$i]['usergroups'] = 'pma__usergroups'; | ||
+ | $cfg['Servers'][$i]['navigationhiding'] = 'pma__navigationhiding'; | ||
+ | $cfg['UploadDir'] = ' '; | ||
+ | $cfg['SaveDir'] = ' '; | ||
+ | $cfg['Servers'][$i]['hide_db'] = '(information_schema|mysql)'; | ||
+ | ?> | ||
+ | |||
+ | == entrada no nginx == | ||
+ | |||
+ | location /paineldb { | ||
+ | root /usr/share/; | ||
+ | index index.php index.html index.htm; | ||
+ | location ~ ^/paineldb/(.+\.php)$ { | ||
+ | try_files $uri =404; | ||
+ | root /usr/share/; | ||
+ | fastcgi_pass 127.0.0.1:9039; | ||
+ | fastcgi_index index.php; | ||
+ | fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; | ||
+ | include /etc/nginx/fastcgi_params; | ||
+ | } | ||
+ | location ~* ^/paineldb/(.+\.(jpg|jpeg|gif|css|png|js|ico|html|xml|txt))$ { | ||
+ | root /usr/share/; | ||
+ | } | ||
+ | } | ||
+ | |||
== Temas == | == Temas == | ||
+ | |||
+ | |||
Estou usando esse [http://sourceforge.net/projects/phpmyadmin/files/themes/pmahomme/1.0b/ pmahomme] | Estou usando esse [http://sourceforge.net/projects/phpmyadmin/files/themes/pmahomme/1.0b/ pmahomme] | ||
Linha 5: | Linha 80: | ||
Outros em http://www.phpmyadmin.net/home_page/themes.php | Outros em http://www.phpmyadmin.net/home_page/themes.php | ||
+ | == Alterando a senha == | ||
+ | Vá em Privilégio > clique em editar na linha do usuário phpmyadmin > em Altera a senha coloque uma nova | ||
+ | no campo Senha ou clique Gerar Senha (Gerar) e depois em Executar. Ou então no prompt no MySql digite | ||
+ | |||
+ | <source lang="mysql"> | ||
+ | SET PASSWORD FOR 'phpmyadmin'@'localhost' = PASSWORD( 'novasenha' ) | ||
+ | </source> | ||
+ | |||
+ | E ajuste em $dbpass /etc/phpmyadmin/config-db.php a nova senha | ||
+ | |||
+ | |||
+ | |||
+ | * [http://agoracomlinux.blogspot.com/2019/01/resolvendo-problemas-pos-instalacao-do.html Resolvendo problemas pós instalação do PHP 7.2 e MariaDB/MySql] | ||
[[Categoria:Servidor]] | [[Categoria:Servidor]] |
Edição atual tal como às 01h58min de 13 de dezembro de 2019
Página do projeto https://www.phpmyadmin.net/
instalando
wget -c https://files.phpmyadmin.net/phpMyAdmin/4.6.3/phpMyAdmin-4.6.3-all-languages.zip
unzip phpMyAdmin-4.6.3-all-languages.zip
mv phpMyAdmin-4.6.3-all-languages /usr/share/paineldb
chown -R www-data: /usr/share/paineldb
Criando banco
source /usr/share/paineldb/sql/create_tables.sql
GRANT SELECT, INSERT, DELETE, UPDATE ON `phpmyadmin`.* TO 'pma'@localhost identified by 'senhadb';
exemplo de configuração
coloque no arquivo config.inc.php
<?php $cfg['blowfish_secret'] = 'senha'; $i = 0; $i++; $cfg['DefaultLang'] = 'pt_BR'; $cfg['Servers'][$i]['auth_type'] = 'cookie'; $cfg['Servers'][$i]['host'] = 'localhost'; $cfg['Servers'][$i]['connect_type'] = 'tcp'; $cfg['Servers'][$i]['compress'] = false; $cfg['Servers'][$i]['extension'] = 'mysqli'; $cfg['Servers'][$i]['AllowNoPassword'] = false; $cfg['Servers'][$i]['controlhost'] = 'localhost'; $cfg['Servers'][$i]['controluser'] = 'pma'; $cfg['Servers'][$i]['controlpass'] = 'senhadb'; $cfg['Servers'][$i]['pmadb'] = 'phpmyadmin'; $cfg['Servers'][$i]['bookmarktable'] = 'pma__bookmark'; $cfg['Servers'][$i]['relation'] = 'pma__relation'; $cfg['Servers'][$i]['table_info'] = 'pma__table_info'; $cfg['Servers'][$i]['table_coords'] = 'pma__table_coords'; $cfg['Servers'][$i]['pdf_pages'] = 'pma__pdf_pages'; $cfg['Servers'][$i]['column_info'] = 'pma__column_info'; $cfg['Servers'][$i]['history'] = 'pma__history'; $cfg['Servers'][$i]['tracking'] = 'pma__tracking'; $cfg['Servers'][$i]['designer_coords'] = 'pma__designer_coords'; $cfg['Servers'][$i]['userconfig'] = 'pma__userconfig'; $cfg['Servers'][$i]['recent'] = 'pma__recent'; $cfg['Servers'][$i]['table_uiprefs'] = 'pma__table_uiprefs'; $cfg['Servers'][$i]['users'] = 'pma__users'; $cfg['Servers'][$i]['usergroups'] = 'pma__usergroups'; $cfg['Servers'][$i]['navigationhiding'] = 'pma__navigationhiding'; $cfg['UploadDir'] = ' '; $cfg['SaveDir'] = ' '; $cfg['Servers'][$i]['hide_db'] = '(information_schema|mysql)'; ?>
entrada no nginx
location /paineldb { root /usr/share/; index index.php index.html index.htm; location ~ ^/paineldb/(.+\.php)$ { try_files $uri =404; root /usr/share/; fastcgi_pass 127.0.0.1:9039; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include /etc/nginx/fastcgi_params; } location ~* ^/paineldb/(.+\.(jpg|jpeg|gif|css|png|js|ico|html|xml|txt))$ { root /usr/share/; } }
Temas
Estou usando esse pmahomme
Outros em http://www.phpmyadmin.net/home_page/themes.php
Alterando a senha
Vá em Privilégio > clique em editar na linha do usuário phpmyadmin > em Altera a senha coloque uma nova no campo Senha ou clique Gerar Senha (Gerar) e depois em Executar. Ou então no prompt no MySql digite
SET PASSWORD FOR 'phpmyadmin'@'localhost' = PASSWORD( 'novasenha' )
E ajuste em $dbpass /etc/phpmyadmin/config-db.php a nova senha