In Feburary 2016 07,
Click Start. Click Run and type “cmd” (in Windows XP). In Windows Vista, type “cmd” in the Start Search box. This will open up the DOS prompt.
Create a test file by entering this command at the DOS prompt (without quotes): “dir > file.txt.”
Type the following command: “ftp [server name].” The server name should be the server or computer you are trying to connect to. For example, “ftp ftp.Microsoft.com.”
Enter your username/login and password when prompted.
Enter the following command: “put file.txt.” If your FTP connection has no errors, you will see a message that confirms that you are logged in.
Type “quit, to exit the FTP session.
Open the test file you created by typing: “edit file.txt.” The test file will show you the nature of any errors. The error may be at your end or on the server side.
In Feburary 2016 07,
Showing posts with label entering. Show all posts
Showing posts with label entering. Show all posts
Sunday, 7 February 2016
Friday, 5 February 2016
How to Transfer File via SSH Shell AccessIn Feburary 2016 05,
In Feburary 2016 05,
Open the SSH Access client. If you have not installed an SSH client, there are many available. PuTTY is the most notable, freely available terminal emulation programs available.
Connect to your remote server. In a graphical environment, this will simply be a matter of clicking connect and entering the appropriate hostname. In the instance of PuTTY, you'll have to manually open an SFTP session by typing 'psftp [hostname]' where '[hostname]' is the name or IP address of the server you want to connect to.
Enter your username and password as necessary. You may have to coordinate this with the network administrator.
Initiate the file transfer. Depending on whether you have a graphical interface or PuTTY's command line interface will change how you initiate the transfer. In PuTTY, you'll want to utilize the commands 'put [local filename] [remote filename]' (upload) and 'get [remote filename] [local filename]'. In an GUI, you'll simply click and drag files between the local and remote machine.
Close the connection. To remain in the program, but terminate the session, type 'close'. To exit out entirely, type 'quit'.
In Feburary 2016 05,
Open the SSH Access client. If you have not installed an SSH client, there are many available. PuTTY is the most notable, freely available terminal emulation programs available.
Connect to your remote server. In a graphical environment, this will simply be a matter of clicking connect and entering the appropriate hostname. In the instance of PuTTY, you'll have to manually open an SFTP session by typing 'psftp [hostname]' where '[hostname]' is the name or IP address of the server you want to connect to.
Enter your username and password as necessary. You may have to coordinate this with the network administrator.
Initiate the file transfer. Depending on whether you have a graphical interface or PuTTY's command line interface will change how you initiate the transfer. In PuTTY, you'll want to utilize the commands 'put [local filename] [remote filename]' (upload) and 'get [remote filename] [local filename]'. In an GUI, you'll simply click and drag files between the local and remote machine.
Close the connection. To remain in the program, but terminate the session, type 'close'. To exit out entirely, type 'quit'.
In Feburary 2016 05,
Wednesday, 3 February 2016
How to Install Plesk on UbuntuIn Feburary 2016 03,
In Feburary 2016 03,
Open your network configuration file in a text editor as the root user. To open the file in Gedit as root, open Gnome Terminal and enter “gksudo gedit /etc/network/interfaces” (without quotes, here and throughout) at the prompt. Ubuntu's default interface uses DHCP to assign an IP address at boot, but you must change this configuration to use a static IP address instead. Comment out the line “iface eth0 inet dhcp” by adding a “#” symbol to the beginning of the line, then add the following seven lines to the bottom of the file:iface eth0 inet static
address
network
netmask
broadcast
gateway
dns-nameservers
Substitute your server's value for each number inside brackets in the above lines, but don't include the brackets in the code you add to the file. You can get these values from your Web host or Internet service provider. Save the file and close Gedit.
Restart your network interface to apply the changes by entering “sudo ifdown eth0 && sudo ifup eth0” at the prompt.
Install PHP 5 by entering “sudo apt-get install php5” at the prompt. If you already have the latest version of PHP 5 installed or you don't plan to install the Web Presence Builder, you can skip this step. The Parallels Web Presence Builder is a custom website designer that supports drag-and-drop graphical site construction, shopping cart checkout and traffic analytics. Many hosting resellers use Presence Builder as an all-in-one solution for their customers.
Uninstall AppArmor to prevent conflicts between the two services. By removing AppArmor, you introduce a level of vulnerability to your system, so you may want to install an alternative kernel security layer such as SELinux or Grsecurity. To uninstall AppArmor, enter “sudo apt-get remove apparmor” at the prompt.
Open firewall ports for any Plesk components you want to use. Visit the Parallels site to see a list of Plesk components and their associated ports (link in Resources). At the minimum, you probably need FTP, SSH, DNS, HTTP, Auth and a database component such as MySQL or PostrgreSQL. To open a port in the default Ubuntu firewall, enter the following command at the prompt:sudo ufw allow Substitute the appropriate port number for “port number,” but don't include the brackets in the command.
Download the one-click installer from the Plesk site using the wget command. At the terminal prompt, enter the following command to launch the installer:wget -O - http://autoinstall.plesk.com/one-click-installer | shThis command downloads the Plesk installation script to your current directory and installs Plesk in Ubuntu. After about five minutes, when the installation completes, you can log in to the Plesk control panel and initialize the service.
Open a Web browser and enter “http://<your IP address>:8443” in the address bar, substituting your IP address for “
” and omitting the brackets. The Plesk control panel displays a first-time configuration page, and you're prompted to enter your name, phone number and email address and create a new password.
Purchase a Plesk license by clicking “Tools and Settings,” selecting “License Management” and choosing “Order New Key.” You can use the Plesk control panel through the trial key until your license is authenticated.
In Feburary 2016 03,
Open your network configuration file in a text editor as the root user. To open the file in Gedit as root, open Gnome Terminal and enter “gksudo gedit /etc/network/interfaces” (without quotes, here and throughout) at the prompt. Ubuntu's default interface uses DHCP to assign an IP address at boot, but you must change this configuration to use a static IP address instead. Comment out the line “iface eth0 inet dhcp” by adding a “#” symbol to the beginning of the line, then add the following seven lines to the bottom of the file:iface eth0 inet static
address
network
netmask
broadcast
gateway
dns-nameservers
Substitute your server's value for each number inside brackets in the above lines, but don't include the brackets in the code you add to the file. You can get these values from your Web host or Internet service provider. Save the file and close Gedit.
Restart your network interface to apply the changes by entering “sudo ifdown eth0 && sudo ifup eth0” at the prompt.
Install PHP 5 by entering “sudo apt-get install php5” at the prompt. If you already have the latest version of PHP 5 installed or you don't plan to install the Web Presence Builder, you can skip this step. The Parallels Web Presence Builder is a custom website designer that supports drag-and-drop graphical site construction, shopping cart checkout and traffic analytics. Many hosting resellers use Presence Builder as an all-in-one solution for their customers.
Uninstall AppArmor to prevent conflicts between the two services. By removing AppArmor, you introduce a level of vulnerability to your system, so you may want to install an alternative kernel security layer such as SELinux or Grsecurity. To uninstall AppArmor, enter “sudo apt-get remove apparmor” at the prompt.
Open firewall ports for any Plesk components you want to use. Visit the Parallels site to see a list of Plesk components and their associated ports (link in Resources). At the minimum, you probably need FTP, SSH, DNS, HTTP, Auth and a database component such as MySQL or PostrgreSQL. To open a port in the default Ubuntu firewall, enter the following command at the prompt:sudo ufw allow Substitute the appropriate port number for “port number,” but don't include the brackets in the command.
Download the one-click installer from the Plesk site using the wget command. At the terminal prompt, enter the following command to launch the installer:wget -O - http://autoinstall.plesk.com/one-click-installer | shThis command downloads the Plesk installation script to your current directory and installs Plesk in Ubuntu. After about five minutes, when the installation completes, you can log in to the Plesk control panel and initialize the service.
Open a Web browser and enter “http://<your IP address>:8443” in the address bar, substituting your IP address for “
” and omitting the brackets. The Plesk control panel displays a first-time configuration page, and you're prompted to enter your name, phone number and email address and create a new password.
Purchase a Plesk license by clicking “Tools and Settings,” selecting “License Management” and choosing “Order New Key.” You can use the Plesk control panel through the trial key until your license is authenticated.
In Feburary 2016 03,
Subscribe to:
Comments (Atom)