Telnet configuration in RHEL5.0

First check whether telnet-server rpm in installed,

# rpm -q telnet-server
telnet-server-0.17-38.el5

If it is installed, then edit

# vi /etc/xinet.d/telnet

change the line disable = yes   to
disable = no

After edit the line save the file from the command

:wq

Then restart the xinetd service by a simple command

# service xinetd restart

Now we can able to do telnet connection on this linux system!!

cheers!!!

But Guys Wait………

Note : It works for the system which is not protected with IPtables and Selinux

If you have iptables enabled. then please follow as below,

Make a rule to allow telnet from external clients.

# iptables -I INPUT -p tcp –dport 23 -j ACCEPT

# service iptables save

# service iptables restart

Just give following command and make sure that rule is saved.
# iptables -L

This rule is to allow request coming to port number 23 i.e. telnet connections from any client.

MySQL Change root Password

How do I change MySQL root password under Linux, FreeBSD, OpenBSD and UNIX like operating system over ssh / telnet session?

Setting up mysql password is one of the essential tasks. By default root user is MySQL admin account. Please note that the Linux / UNIX login root account for your operating system and MySQL root are different. They are separate and nothing to do with each other (indeed some admin removes root account and setup admin as mysql super user).
mysqladmin command to change root password

If you have never set a root password for MySQL, the server does not require a password at all for connecting as root. To setup root password for first time, use mysqladmin command at shell prompt as follows:

$ mysqladmin -u root password NEWPASSWORD

However, if you want to change (or update) a root password, then you need to use following command

$ mysqladmin -u root -p’oldpassword’ password newpass

For example, If old password is abc, and set new password to 123456, enter:

$ mysqladmin -u root -p’abc’ password ’123456′

Change MySQL password for other user

To change a normal user password you need to type (let us assume you would like to change password for vivek):

$ mysqladmin -u vivek -p oldpassword password newpass

Changing MySQL root user password using MySQL sql command

This is another method. MySQL stores username and passwords in user table inside MySQL database. You can directly update password using the following method to update or change password for user vivek:

1) Login to mysql server, type following command at shell prompt:

$ mysql -u root -p

2) Use mysql database (type command at mysql> prompt):

mysql> use mysql;

3) Change password for user vivek:

mysql> update user set password=PASSWORD(“NEWPASSWORD”) where User=’vivek’;

4) Reload privileges:

mysql> flush privileges;
mysql> quit

This method you need to use while using PHP or Perl scripting.

Ubuntu Linux enable telnet service

Q. How do I install and start telnet service / server under Ubuntu Linux?

A. Telnet is an insecure service. It is recommended that you use ssh service. However sometime telnet server or service is needed. Here are instructions to enable telnet:
Install telnetd server

$ sudo apt-get install telnetd
Restart inetd service:
$ sudo /etc/init.d/openbsd-inetd restart
You should now be able to telnet to the server from Windows or Linux desktop system to Ubentu Linux telnet server. Type the following command to connect to Telnet server:
$ telnet ubentu-linux-server-ip
$ telnet 192.168.1.200
$ telnet ubentu.mydomain.com