Putty Manager Connection for SSH Web Development

When getting more and more experience in web development. It's a good idea to know some SSH. You will hear the term putty when dealing with this technique. Putty manager is an application that will can connect to computers or servers with SSH. When you SSH into a web server there are some configurations and other techniques that can help accomplish certain tasks.

You Don't Need to Be An Linux Expert

SSH Putty Access Manager

You really wont need a lot of information about SSH to be a great web developer. It is a good idea to know the basic of navigation and what putty can do. When logging into your server using putty, you will be required to know the ip address, username and password to the server. When logging into your server manager it will be nothing but a black background and white text. Something like your command prompt or DOS in Windows. There is no use for your mouse, everything is done by commands on the keyboard.

SSH Contains Operating System Files

When learning how to interact in a SSH manager environment, Be Careful. Some settings and configuring files can change the way your server is running. What you can do with putty you can use the command top to see what processes are running. This can be handy if you are experiencing lagging or slow response times. You can see what process is taking up your server power. It is a good idea to know what is running even if nothing is wrong. Maybe something keeps running that is not required.

Manager to Access MySQL

Another good idea to learn in SSH manager is to learn how to navigate through your MySQL. You can use many tools to get around MySQL. Sometimes your MySQL tables may go down, get corrupted and needs to be repaired. You can repair MySQL tables with PHP MyAdmin or another tool, but there has been better success rates when repairing them through SSH. The reason is when repairing it through a client side gui, visitors can still try to access your table while you are trying to repair it. In a SSH environment you can deny visitors while you repair, so nothing can interact with it while repairing.

Some Basic MySQL Commands

To get to your MySQL table login using putty to your server. Then type: mysql -u user -ppass. You need to put the -u space username space -p then password. If entered correctly it will bring into the MySQL status. Now choose your database using: use database;. This should get you in where you can use your standard MySQL commands, like show tables;. Just remember to end everything with a ;.

Putty Basics To Study Up On

These are some of the basic things you can do in a SSH manager environment. Using putty is one of the basic ways to do it. Putty is an open source application that is free. You can Google it or go to Putty SSH. Just be careful if you don't know what you are doing. Start small and work your way up. Learn how to navigate through folders and different features, before trying to change anything. Try to log into your MySQL server by typing mysql -u user -ppass. This is one of the basics, plus one of the most valuable things to learn in putty.

Related Articles

Comments

Post new comment

The content of this field is kept private and will not be shown publicly.
  • Web page addresses and e-mail addresses turn into links automatically.
  • Allowed HTML tags: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd>
  • Lines and paragraphs break automatically.

More information about formatting options