Tag: mysql

shape
shape
shape
shape
shape
shape
shape
shape
Standard

How to enable remote access to MySQL from cPanel

When trying to access MySQL from cPanel externally, many people get a connection error message because they don’t know that it’s necessary to enable the connection for the IP or domain they’re accessing. In this post we’ll show you how to enable remote access to MySQL from cPanel. First, go to the cPanel panel and

Standard

Monitoring Queries in MySQL in real time

Monitoring queries that are causing system bottlenecks is a common and extremely useful task. MySQL comes by default with the mysqladmin utility, which allows you to perform administrative tasks such as checking the MySQL server’s configuration, status, creating a database and so on. How to monitor Queries in real time using mysqladmin ? Given the

Standard

MySQL: Recovering the root password

Accidents happen. Losing or forgetting a password is not uncommon. In this brief guide, we’ll teach you how to change the MySQL root password on Linux servers. First of all, make sure you are logged in as root. We will edit the file “ /etc/my.cnf ” file and add the following directive at the end

Standard

Add Column to Existing MySQL Table

To add the“age” column of type “int (11)” to the“student” table, simply use the following SQL query: ALTER TABLE aluno ADD idade int(11) the above query will add the column“age” last column, if you want to define the position of the column use the following SQL query: ALTER TABLE aluno ADD idade int(11) AFTER nome

Latest news

Latest news directly from our blog.