Gestire un database MySQL o MariaDB tramite l'ambiente a riga di comando
Per creare un PDF, utilizzare la funzione “Stampa” in fondo alla pagina.
Per pacchetti Hosting Linux e tutti i server con sistemi operativi Linux
Può essere utile testare le istruzioni, che verranno successivamente eseguite da uno script, nell'ambiente a riga di comando di un database MySQL o MariaDB. Per accedere al database tramite la riga di comando, procedi come segue:
- Accedi al tuo pacchetto Hosting o al tuo server tramite SSH.
- A seconda del pacchetto, immetti il comando indicato nella tabella seguente (sostituisci i dati dell'esempio con i dati di accesso al tuo database):
Prodotto | Comando |
---|---|
Server gestiti (Performance Hosting), sui quali è installato MySQL 5.7 / 8.0 o MariaDB, e web hosting (hosting condiviso) | mysql -u dbo123456789 -h db123456789.db.1and1.it -p db123456789 |
Server gestiti (Performance Hosting), sui quali è installato MySQL 5.5 | mysql -u dbo123456789 -h localhost -S /tmp/mysql5.sock -p db123456789 |
Server (senza Plesk) | mysql -u root -p |
Server (con Plesk) | mysql -u admin -p |
Nota bene
Sui server con Plesk, l'utente del database amministrativo è stato rinominato da root ad admin. Tuttavia, la password corrisponde alla password iniziale del server (password di root).
- Accedi al tuo database.
Ecco un esempio di un server con Plesk:
login as: root
root@74.208.111.111's password:
[root@u15376217 ~]# mysql -u admin -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 9342
Server version: 5.5.14 MySQL Community Server 5.5 (GPL)
Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql>
Ora puoi eseguire operazioni di database sul tuo database tramite l'interfaccia di comando.