In Feburary 2016 14,
Click 'System,' and then 'Gnome-Terminal.'
Create a system user called 'ftp' to enable anonymous access. Type 'adduser' and press 'Enter.' Type in 'ftp' and press 'Enter.' You can leave the rest of the user requirements blank and complete the user addition with default settings.
Type '/etc/ftpwelcome' and press 'Enter.' This file contains your FTP server welcome message. Type in the welcome message you want to display before the login screen. Save the document and return to the Terminal.
Type '/etc/ftpmotd' and press 'Enter.' Configure the message to display after a user has connected via FTP here. Save and return to the Terminal.
Type '/etc/inetd.conf' and press 'Enter.' Scroll down to the following line:ftp stream tcp nowait root /usr/libexec/ftpd ftpd -lRemove the has (#) from the beginning of the line. Exit the file and save changes. This enables your FTP server.
Type '/etc/rc.conf' and press 'Enter.' Change the 'ftpd_enable' variable to read 'YES' rather than 'NO.' Exit and save.
Type '/etc/rc.d/ftpd start' and press 'Enter.' This enables your FTP server.
In Feburary 2016 14,
Showing posts with label blank. Show all posts
Showing posts with label blank. Show all posts
Sunday, 14 February 2016
Thursday, 11 February 2016
How to Transfer Files to an iPad With FTPIn Feburary 2016 11,
In Feburary 2016 11,
Download, install and launch the FTP client app from the App Store.
Enter the desired FTP address.
Enter your username and password, leaving the login blank for anonymous public servers.
Ensure that you've selected the appropriate FTP protocol (FTP or the more FTPS or SFTP), and then tap 'Connect.' If you are unsure of which protocol to choose, check with your IT administrator for clarification.
Tap a file name, and then choose your action from the menu of options. For example, tap 'Open' (if the file format is supported by iOS) to open it on your iPhone or tap 'Move' to transfer it to a different location on the FTP server. Files like HTML or PHP can be edited from the built-in text editor in either app.
In Feburary 2016 11,
Download, install and launch the FTP client app from the App Store.
Enter the desired FTP address.
Enter your username and password, leaving the login blank for anonymous public servers.
Ensure that you've selected the appropriate FTP protocol (FTP or the more FTPS or SFTP), and then tap 'Connect.' If you are unsure of which protocol to choose, check with your IT administrator for clarification.
Tap a file name, and then choose your action from the menu of options. For example, tap 'Open' (if the file format is supported by iOS) to open it on your iPhone or tap 'Move' to transfer it to a different location on the FTP server. Files like HTML or PHP can be edited from the built-in text editor in either app.
In Feburary 2016 11,
Wednesday, 10 February 2016
How to Create a MySQL DatabaseIn Feburary 2016 10,
In Feburary 2016 10,
Log into the phpMyAdmin interface on your Web space. You will need the username and password assigned by your Web-hosting provider.
Find the text 'Create New Database' on the main frame of the page.
Enter a name for your new database into the blank text field provided.
Click 'Create.' You will get a confirmation page telling you that your database has been created.
Using the SSH Command Line
Log into your Web space using an appropriate SSH client. You will need the username and password assigned to you by your Web-hosting provider.
Enter the following into the command line, using your own username and password instead of the words in capitals:
mysql -uUSERNAME -pPASSWORD
Enter the following into the MySQL prompt that you will be given, with your database's proposed name instead of NAME:
create database NAME;
Your database has now been created.
In Feburary 2016 10,
Log into the phpMyAdmin interface on your Web space. You will need the username and password assigned by your Web-hosting provider.
Find the text 'Create New Database' on the main frame of the page.
Enter a name for your new database into the blank text field provided.
Click 'Create.' You will get a confirmation page telling you that your database has been created.
Using the SSH Command Line
Log into your Web space using an appropriate SSH client. You will need the username and password assigned to you by your Web-hosting provider.
Enter the following into the command line, using your own username and password instead of the words in capitals:
mysql -uUSERNAME -pPASSWORD
Enter the following into the MySQL prompt that you will be given, with your database's proposed name instead of NAME:
create database NAME;
Your database has now been created.
In Feburary 2016 10,
Subscribe to:
Comments (Atom)