Software :: Setting Up FTP - Make It Viewable From Http://?

Jan 18, 2011

I've set up an FTP and it works fine. Now the idea is to make it viewable from http://..... I've redirected the DNS to the specific IP, I've installed apache2 (using debian), I've configured the apache2.conf (as much as i know how ), but still nothing happens... The idea is, the files to be viewable/downloadable throught [URL], but the directory's in [URL] not to be seen (restricted)... The FTP directory is /ftp/username Tried this in apache2.conf

Code:
NameVirtualHost xxxx:80
<VirtualHost xxxx:80>
ServerName ftp.xxxx.org
ServerAlias ftp.xxxx.org
ServerPath /ftp/username
<Directory /ftp/username>
Options +Indexes
[Code].......

View 2 Replies


ADVERTISEMENT

Ubuntu Servers :: How To Make Apache Server Viewable To Everyone

Jan 28, 2010

I have it set up so when I go to URL... it shows my server. I'm not sure how I can make it viewable to everyone though.

View 3 Replies View Related

Ubuntu Installation :: Setting Up Home Server (FTP And HTTP) Using 10.10

Mar 2, 2011

I've been looking for the last few days for a good how to on setting up a home server using Ubuntu 10.10. I have found several and looked them over and have installed the server on to a system and started to get it setup. Now though I cannot access anything via http, even the php info. I want to start from scratch on this but finding the best tutorial on how to do this. The idea on what I plan to do is set it up to be able to hold mp3's on and allow them to be downloaded or played on other computers on the home network. Also will be looking to setup to have other items done as well such as a database that can accessed. I would like to be able to use both Http and Ftp on this if possible.

View 3 Replies View Related

Ubuntu :: Make A FTP And HTTP Server?

Mar 24, 2010

i need to make a HTTP and FTP server in ubuntu,how to install and configure

View 1 Replies View Related

General :: Make Some Files On Machine Accessible Via HTTP Using Apache?

Mar 6, 2011

I did a wget on the source and built the apache binaries correctly. Now what do I need to do to get some documents accessible using HTTP (start some services?)? Also, do I need to group all the files I want to make accessible in some directory and make the directory and its contents accessible or can I just make the individual documents available? I will be providing these links to my colleagues and do not want them to be down, so need to make sure that the apache services are up automatically after a reboot. Does apache have some inbuilt support for this?

View 2 Replies View Related

Ubuntu Servers :: Make Server Listen At Different Port For HTTP?

Apr 6, 2010

How can I set my server to listen at a different port for http access. I would like to use port 8080 (to circumnavigate isp blocks). Also can I do the same thing for sftp connections?

View 3 Replies View Related

Ubuntu :: Windows Shared Printer Not Viewable In CUPS?

May 4, 2011

Background: I have a Desktop running Windows 7 Professional that has a Brother HL-2140 laserjet printer attached to it. I can successfully view the Windows 7 shares using SAMBA, but when I choose NETWORK PRINTER > WINDOWS PRINTER via SAMBA > BROWSE, I receive an error "NO PRINT SHARES - There were no print shares found. Please check that the Samba service is marked as trusted in your firewall configuration."

I have no firewall installed, the Windows printer is shared, and before I upgraded to Natty, all worked fine under Ubuntu Maverick. When I run the "testparm" command, I noticed that the line under [printers] states "browseable = No" even though in my smb.conf file it is set to "browseable = yes" (and I have changed/saved this file several times, using "sudo" with the same result).

I would like someone to look over my enclosed settings and see if there is a tweak I need to make in order to browse my Windows 7 shared printer.

[Code]...

View 2 Replies View Related

Ubuntu Networking :: Nat Loopback - Get The Sever Viewable To Everyone Outside Of My Network ?

Sep 1, 2011

So I have an Ubuntu server setup but my modem from my ISP only has one ethernet port so I have to run my server behind a router. I have been able to get the sever viewable to everyone outside of my network but when someone is inside my network they have to view the server by the direct IP the web address doesnt work nor does the actual static IP. I believe this is something to do with my router not being able to loopback. It is a belkin N600 DB.

View 7 Replies View Related

Ubuntu Installation :: Sun Ultra10 Screen Resolution Un-viewable After Booting?

Oct 10, 2010

I have a Sparc Ultra10, which uses PC hardware. I see the Openboot console display at 1024x768, but when I try to boot from a Ubuntu server install CD for Sparc (for example, 7.04) the screen resolution immediately goes out of range for my monitor (according to a warning message flying around the screen).

I tried adding boot parameters to specify the resolution I want (boot: linux vga=773 screen=1024x76, but they seem to be ignored. I guess the Ubuntu testers all have Sun monitors!

I also tried the 8.04 and 9.10 versions, but they respectively hang after the "S" in Silo and issue the fatal error "Fast Data Access MMU Miss".

I've got Silo version 1.4.14, OBP 3.31.0, and POST 3.1.0. My computer is an UltraSparc IIi at 360 Mhz, with 256 megs of memory.

So, short of acquiring a monitor with the really strange Sun standard resolution, how can I get past this problem and get the resolution I want from Linux at boot time?

View 3 Replies View Related

Ubuntu Multimedia :: GRAPHS In Open Office Not Viewable To Word Users?

Sep 2, 2010

I have to write lab reports with charts and graphs on a regular basis. i did the first one in open office recently but the charts did not appear on my teachers screen! it was a broken failed half rendered blank chart area!

The data tables copied fine but the graphs did not. i made both in spreadsheet and copy pasted them over to a writer document.

View 2 Replies View Related

Ubuntu Multimedia :: Webcam Skype Preview Works But Not Viewable Other End / Solve It?

May 4, 2011

My webcam works at my end but two people have said they can't see me their end using skype. They webcam with other people so i know it is not their settings or anything. One has a mac and the other a windows machine. I really don't have anyone else to test this with as most people i know don't have webcams.

View 9 Replies View Related

Networking :: Craft A Valid Http/1.1 Request For Getting Http Headers (not The Html File Itself)

Sep 27, 2010

Using netcat, nc(1), craft a valid http/1.1 request for getting http headers (not the html file itself!) for the main index page of www dot aalto dot fi. What request method did you use? Which headers did you need to send to the server? What was the status code for the request? Which headers did the server return? Explain the purpose of each header.

nc -v www dot aalto dot fi 8080
HEAD / HTML/1.1
host: www dot aalto dot fi
And it returns:
200 OK
Content-Length: 858
Content-Type: text/html
Last-Modified: Thu, 02 Sep 2010 12:46:01 GMT
[Code]....

I really don't know what does it mean. Question 2: Using netcat, nc(1), start a bogus web server listening on the loopback interface port 8080. Verify with netstat(, that the server really is listening where it should be. Direct your browser to the bogus server and capture the User-Agent: header "Direct your browser to the bogus server and capture the User-Agent: header" I don't understand this question.

View 2 Replies View Related

Ubuntu Servers :: Nagios On 10.04 Server Using Apt-get - HTTP WARNING: HTTP/1.1 404 Not Found

Aug 4, 2010

I installed Nagios on my Ubuntu 10.04 server using apt-get and when I accessed the web console, everything was OK. I made some changes to apache (creating some new virtual sites) and since then Nagios gives me a warning message for HTTP with the message, HTTP WARNING: HTTP/1.1 404 Not Found. The sites that I created are working perfectly. I noticed that the attemps are 4/4. Does this need to be reset or does Nagios automatically reset that once it detects the issue is resolved?

View 1 Replies View Related

Server :: Make Auto Replace Http Url In A Web Server?

Jul 2, 2010

I setting up a web server on my Linux (Centos) using "Apache" web server. And its working well, it will show my websites. But when i try to put my url in a internet browser (ie. only type "myweb.com" ) is only be [URL]. Usually as i know like the other websites (ie. google.com) it will go to auto replace the name be [URL]. But my url here it's not be replacing like that. How to do this configuration. I don't know where the services that i need to look. (ie; named (bind) or in Apache web server it self)?

View 2 Replies View Related

CentOS 5 :: Make VLC Save Brightness Setting?

Apr 25, 2009

Totem didn't play .avi movies by default after my new CentOS 5.3 install. In my effort to find a way to fix it I learned in another forum that installing VLC allows almost all video formats to be played. So I added RPMForge to my repository group then I found and installed VLC with no problem.

Now that VLC is installed and I've had a chance to use it, I've learned that it fails to save my brightness setting between launches. This is very frustrating because the default brightness is always too dark, which means I have to go to the controls and reset it every time I launch the software. Does anyone here know how I can save my brightness setting between launches?

View 1 Replies View Related

Fedora Installation :: Didn't Make Custom Setting Changes To Partitions

Sep 23, 2009

I installed Fedora 11 on a server with 2 equal sized disks. I used the gui installer and didn't make custom setting changes to the partitions. One of the steps asked for me to choose the disks i wanted to use for this installation. I selected both disks and after the installation Fedora only sees one volume the size of both disks combined.Do I now have software raid0 or do I have something else?

View 3 Replies View Related

Ubuntu Multimedia :: Unable To Make Monitor Setting Persistent?

Mar 8, 2011

My system boots in 1024x768 screen resolution. I'd like to change it to 1280x1024 for all users. I can change the setting to 1280x1024 and it's persistent between sessions, but is reset back to 1024x768 on reboot. In the old days, I used to edit xorg.conf to set the the mode I want, but now there's no xorg.conf. I created one using

xorg -configure

but this created an xorg.conf which has no modeline settings at all. The file just looks like a template. Here's what I got:

Quote:

Section "ServerLayout"
Identifier "X.org Configured"
Screen 0 "Screen0" 0 0
InputDevice "Mouse0" "CorePointer"
InputDevice "Keyboard0" "CoreKeyboard"

[Code].....

View 1 Replies View Related

Ubuntu :: Make The Mouse Setting "Default"?

Mar 27, 2010

I was just checking new kinds of things when i reached the mouse in the system.. i played a bit with the sensitivity and the acceleration and now my mouse doesn't feel right and i cant get it back to the normal settings..does anyone know a way to make the mouse setting " DEFAULT" again? (i made default bold, cause i saw an unanswered thread where no one answered properly.. ) ..make them normal in other words..

View 1 Replies View Related

General :: Setting Time And Date / Setting Calendar Format?

May 14, 2010

Have installed Suse 11.2. how can I change the calendar format dd/mm/yyyy and how to configure the system to sync.from an ntp?

View 1 Replies View Related

General :: Network Setting / Change Eth0 Setting?

May 4, 2010

I have a ubuntu server , can advise if I want to change the network setting ( eg. IP address , gateway address etc ) , which one is the configuration file ? for example , if I want to change eth0 setting , what file I should update ?

View 10 Replies View Related

General :: Make Error - Make[2]: *** No Rule To Make Target

Oct 7, 2010

I am getting an error as below.

How do I resolve the error: make[2]: *** No rule to make target `', needed by `mpg123'.

How can I resolve this error.

View 4 Replies View Related

Fedora :: Can't Connect To Non-HTTP

Dec 16, 2010

I'm using the Netopia 2247 router. I'm on Fedora 13, on a Thinkpad T60.

For some reason, ever since I switched my ISP (just last night), I can't connect to any non-HTTP services. I've tried Thunderbird for IMAP, FileZilla for FTP/SFTP, and Empathy for XMPP. Nothing connects. Chromium, Firefox for HTTP: works just fine. I know it seems really far stretched to think that this could be an issue on my end, but: I've checked with the ISP, and they insist that there's no reason this should be happening. They will be coming in tomorrow to take a look at wiring and all that though. I'm able to access my IMAP email via my smartphone's built-in mail client, via my new ISP. This is using a Nokia N82, with default messaging client (just called Messaging). But, who knows, maybe N82's email client actually uses HTTP? (Unfortunately, my only "desktop" computer is T60, and I only have Fedora installed on it; I realize the icon at top right shows Windows, but that's my work desktop, and I definitely can't take that home for testing). I've checked the firewall settings on the router, and put them at the very lowest setting.

Again, I know it seems far fetched that there's something wrong with my system (e.g., I've traveled with my laptop and have never had any problem accessing IMAP or FTP on other connections), but I just want to make sure I've exhausted every possibility. So, if you could entertain the possibility that it's something on my end, what might it be?

Maybe disabling SELinux might help? I'm going to try that when I get back home. Although: I feel like an SELinux dialog would've popped up if that was the problem.

View 10 Replies View Related

Networking :: SVN Over HTTP Or HTTPS ?

Jul 29, 2011

I'm trying to use svn over http or https because I'm rear of a corporate proxy. Only allows HTTP connections.

I tried connect-tunnel but no success.

I also modified ./subversion/servers and I added the proxy server but no success.

View 2 Replies View Related

Software :: Is There API Can Use To Do Http Request.

May 21, 2010

Is there an linux API I can use to do a http request?Say I want to display URL...throught the API

View 1 Replies View Related

Software :: Logging On Ssh Through Http?

Sep 21, 2009

I want to get access to my server remotely through a web browser. I'm looking for an app able to do this. Something like a web based ssh client. So, I want the application to be accessible on my server through Apache probably, I don't want to use any third party online service for loging. Is there something like this

View 8 Replies View Related

Debian :: Equivalent To Http Analyzer?

Jul 5, 2010

I am looking for an application which can display the headers and body of all the http requests that goes from the computer. In short debian equivalent to Http Analyzer.

View 2 Replies View Related

Debian :: How To List All Current Http's

Jan 29, 2011

How can I generate a list of all current connections in the form ofhttp://rtmp://and the like?sitting behind a netgear router.

View 1 Replies View Related

Fedora Networking :: Can't Connect VNC Using Http

Aug 6, 2009

I have Fedora 11 and have successfully set up VNC so that I can connect within the network (direct using vnc client/server setup). I am in the middle of working on a problem and have a fried who is in another city and was trying to set up VNC so that he could connect via http, which I know is possible (that it listens on range 5800 + the display number - mine is 3 in this instance). For the life of me I cannot get the java http viewer to work, here is what I have done so far: My vncservers file:

[Code]...

My router is set up to forward incoming requests on the range 5900-5910 and 5800-5800 to this computer. I have opened ports 5902, 5903, 5802, and 5803 on my linux firewall. So far as I know, this is all that is necessary..well. Whenever I attempt to connect via [URL]:5803 I get a time out error. What could be wrong?

View 5 Replies View Related

Ubuntu :: Can Only Connect To MSN Using HTTP Method

Jan 11, 2010

I have come across a fairly minor issue however. When using any IM clients I am unable to login to MSN using the direct connection method. Instead I find myself having to connect using the HTTP method. I wouldn't worry about this except many of my contacts are complaining that they are getting "message unabled to be delivered" errors regularly when trying to contact me.

View 8 Replies View Related

Ubuntu :: Cannot Access Http Sites?

Aug 2, 2011

How do I get rid of my wubi partition since Ubuntu doesn't work on a Vista laptop. Sorry, it was a gift for Christmas. I never realized Ubuntu was so defective.I am running Windows Vista 32 bit with 3 gigs of ram and one partition from the factory (HP).

View 1 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved