Homework 6: Remote server
- Due Sep 24, 2024 by 9:30am
- Points 1
- Submitting a website url or a file upload
- Available after Sep 19, 2024 at 9:30am
Watch these videos:
- Remote server for web hosting (YouTube playlist Links to an external site.—watch all of the videos)
SSH into digdug.cs.endicott.edu on port 1915 using your <first initial><last name> (e.g., my user name is hfeild) as it appears in Canvas. Your initial password is the one I emailed you. When you first log in, you should change your password to something new by issuing the passwd
command. When you do that, you will be prompted for your current password, then for your new password. Unlike most password prompts, you won't see anything appear as you type (no little circles or anything). Don't be alarmed, the keys you're pressing are going through. Hit "Enter" after each password to continue to the next step.
Once you've changed your password, use that for all future logins.
Now change directories into ~/public_html/csc302/
. Create a new folder for this homework by doing:
mkdir hw6
Change into that directory, then issue the following command in order to create a new PHP page that says "Hi":
echo -e "<php \necho '<h1>Hello\!</h1>';\n?>" > hi.php
Test that this web page works by going to the following URL, but replacing USERNAME with your username (keep the ~ in front):
https://digdug.cs.endicott.edu/~USERNAME/csc302/hw6/hi.php
Now using whatever tools you want (including the FTP/SCP discussed in the videos), create a new folder named quizzer in the hw6 directory on digdug. In it, place the quizzer files that we worked on in class (see here Links to an external site.). Take a screenshot of quizzer.php loaded in your browser, and make sure the URL bar clearly shows the page is loaded from digdug in you user directory.
Submit your screenshot to this Canvas assignment.