Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Column
width75%

Because the old server, kennel.rice.edu, died, a new server now handles hosting organization web pages. To access the new server, organization.rice.edu, a few changes may be necessary to your current setup. 

First, the changes which the new server caused are detailed here. They include:

  • SSH access to organization.rice.edu from Rice networks only
  • Default Shell on organization.rice.edu is bash
  • no FTP access. SFTP access only.
  • No samba/CIFS access supported.
  • No X11 supported.
  • Pine is replaced with ALPINE.
The Nomenclature

The new server is called organization.rice.edu, but "ftp.ruf.rice.edu" and "organization.rice.edu" point to the same server, the new one. However, the way paths are dictated for organization.rice.edu is different from kennel.rice.edu, so old pathways will likely not work. Correcting the path name to your remote directory is necessary to get access to organization.rice.edu. For FileZilla, no remote directory need be named, because FileZilla will go to the home directory of the account automatically.

Setting Up FileZilla for the First Time
  • Create a new profile: Click File > Site Manager. 

  • Under the General tab, make sure the following settings are correct: Host is "organization.rice.edu" *; Port is 22; Protocol is "SFTP - SSH File Transfer Protocol" * and that the Logon Type is "Ask for Password" *. Where the fields prompt you for your account information, fill it in.

  • Under the advanced tab, leave the Remote Directory field blank.

  • Click connect, and you will be prompted to give your password.

  • If you successfully connected, your screen will look something like this.

  • To disconnect, click the disconnect button on the toolbar, and your screen will look something like this.

Setting Up Dreamweaver for the First Time
  • I also need an account to do this.
Using a Linux Shell and SSH/SFTP

If you are familiar with using CLE@R, then using a Linux Shell and SSH/SFTP will feel very familiar. To manipulate files, SSH into organization.rice.edu with the command

Code Block
languagebash
titleSSH Command
linenumberstrue
ssh username@organization.rice.edu

To upload and download files from organization.rice.edu, use the following SFTP command

Code Block
languagebash
titleSFTP Commands
linenumberstrue
sftp username@organization.rice.edu
put local_file_to_server.txt
get remote_file_from_server.txt

 

  • Entering this command will show a confirmation for the server's fingerprint. Type "yes" * to continue.

  • Next enter your password. (Note: it will appear as if nothing is happening as you type your password, this is normal.)

Image Added

  • Once you are into the system, you will be at your home directory, where you can manipulate files and folders.

Image Added

  • To exit, type "exit" * and press enter.

Image Added 

*: enter without quotes