Install My-Sql in Ubuntu

Install sudo apt-get install mysql-server mysql-client Set root user password for localhost sudo mysqladmin -u root -h localhost password ‘urpassword’ Set root user password for anyhost: sudo mysqladmin -u root -h hostname password ‘urpassword’ Open mysql shell mysql -u root -p Allow hosts(machines) to access mysql installed on other machine(login […]

Configure Static IP Address in Ubuntu

You can configure a network adapter of a machine to use a static IP address. To configure static IP address in Ubuntu, you need to edit the  /etc/network/interfaces file Open the file with Sudo Option sudo nano /etc/network/interfaces Assuming that the eth1 is the adapter for which static IP address is to be […]