Showing posts with label Secure. Show all posts
Showing posts with label Secure. Show all posts

Tuesday, 1 March 2016

How to Get Around FTP Error: 226In Feburary 2016 30,

In Feburary 2016 30,
Create subfolders for the files and then transfer them. If you are transferring a lot of files (for example, more than 2,000), you may get the 226 error. This is one work-around.
Utilize STFP, instead of FTP, to transfer your files. SFTP (Secure File Transfer Protocol) does not truncate your number of files per folder, as is the case with FTP.
Post your situation to an online forum. There is a virtually unlimited amount of help out there in the form of fellow computer users who may know how to deal more directly with your specific issue. See an example of one online forum in Resources.
In Feburary 2016 30,

Friday, 26 February 2016

How to Transfer Files from one Linux Server to AnotherIn Feburary 2016 26,

In Feburary 2016 26,
Type the command:
ftp servername
File transfer protocol (ftp) is the standard cross-platform interactive tool for file transfers. Provide your username and password when prompted. The ftp session will begin.
Enter the command:
sftp servername
Secure ftp (sftp) uses an encrypted session, making it a better choice for unsecured networks.
Use the remote command copy (rcp) of BSD on trusted, secured networks only. The basic syntax is:
rcp

.
rcp file1 linuxhost2:/temp
Secure copy (scp) is an encrypted version of rcp. The transfer is sent over an encrypted Secure Shell (ssh) session. The syntax is essentially the same:
scp linuxhost2:/temp/file2 /var/tmp
Copy or synchronize entire directories, using the rsync command:
rsync -oupgrle ssh /local/directory host2:/remote/directory
Check the manual page for rsync to describe the options listed.
In Feburary 2016 26,

Tuesday, 9 February 2016

How to Login to an FTP ServerIn Feburary 2016 09,

In Feburary 2016 09,
Launch the web browser application.
Type the FTP server address into the URL location box, starting with the ftp:// prefix.
Enter a username and password if the FTP site is secure; a login box appears.
Click the 'Page' button if you're using Internet Explorer to access the FTP site and choose 'Open FTP Site in Windows Explorer' if you wish to work with the files on the FTP site in the Windows Explorer interface.
Stand-alone FTP Client
Install an FTP client application on your computer. Many are available for download, and they operate in the same way. The example shown here is the FTP client Fetch that has been available for the Macintosh since 1989. A client for Windows that has been around since the mid-90s is WS-FTP from Ipswitch, Inc.
Double-click the FTP client application to open it.
Type the domain address of the FTP server in the server or location box of the FTP client. If the server is secure, also enter a username and password to gain access to the server.
Click 'Connect.' You will be logged in to the FTP server, and can now upload and download files if the server administrator has set permissions for those actions.
In Feburary 2016 09,

Monday, 8 February 2016

How to Set Up a Secure FTPIn Feburary 2016 08,

In Feburary 2016 08,
Download and install WinSCP. (See Resources.) Double-click the desktop icon once installation is complete. Click 'Session.' Enter your FTP address and then the login details. Click 'File protocol' and select 'Secure (SFTP).' Click 'Login.' You have now set up a secure FTP connection.
Download and install Core FTP LE. (See Resources.) There is a 'Pro' version of this available for more advanced data connection types, but you have to pay for it. The free version allows SFTP. Click 'Start,' 'All Programs,' then 'Core FTP' to open the program. Click 'File,' then 'Sites.' Enter your FTP login details and click to enable 'SFTP.' Click 'Login.'
Download and install FileZilla. (See Resources.) FileZilla is cross-platform and freeware. The program will open after installation. Click 'File,' then 'Site Manager.' Create a 'New Site' and fill in the details. Click 'Server Type' drop-down menu and select 'SFTP' to enable the secure connection. Click 'Connect' to create the connection.
In Feburary 2016 08,

Wednesday, 3 February 2016

How to Change the Password in PuttyIn Feburary 2016 03,

In Feburary 2016 03,
Launch Putty. Type in the host name or IP address in the corresponding text box. This is the address of the server you want to log in to and eventually change the password for.
Click the 'SSH' radio button below the host name text box. This is the most secure way to connect to a server.
Click the 'Open' button at the bottom of the dialog box. If you receive a message indicating that the server's 'host key is not attached,' click 'Yes' to continue.
Enter your current user name and password when prompted. Press 'Enter' on your keyboard after you've entered this information to connect to the server.
Type the command 'Passwd' after you've logged in. This command allows you to change your password. Press 'Enter' after you've entered the command.
Type in your old password and press 'Enter.'
Type in your new password and press 'Enter.' Finally, retype your new password again and press 'Enter.'
In Feburary 2016 03,