General :: Looking For Public Process Hosting Provider?
Jun 22, 2010I am looking for something like Devio.us or SDF that will run dedicated background processes of my choosing. (i.e. OpenSSH).
View 2 RepliesI am looking for something like Devio.us or SDF that will run dedicated background processes of my choosing. (i.e. OpenSSH).
View 2 RepliesI'm trying to download one of my .php files from Godaddy's File Manager, and it's not downloading. I AM able to download everything else on the Internet. Maybe a clue is that after I click "download" it says "stopped" in lower status bar.
View 14 Replies View RelatedI have apache working,i have users set under admin group in /home/admin/username/html that is with an html publicfolder at the end, now permissions are set right, /html is set to mode 777, and the contents also inside them. But everytime i do a 10.0.11.25/~les i get a damn forbidden error code, its got me so pissed off and i dont' know whats the problem. This is the error i get: Forbidden 403 You don't have permission to access /~les on this server.
Code:
[Tue May 05 19:37:48 2009] [notice] Apache/2.2.11 (Unix) DAV/2 PHP/5.2.6 configured -- resuming normal operations
[Tue May 05 20:44:30 2009] [error] [client 10.3.0.254] (13)Permission denied: access to /~les denied
[code]....
I run the following file with the >log.log redirector and it does not capture errors.
#!/bin/bash
echo ************************BEGIN LOG******************************
date +"%m/%d/%Y %H:%M:%S $HOSTNAME"
cp -f /scripts/original/clamscans.log /scripts
[code]....
The following errors show up when I run from the file from the term window, but are not written to log.log:
tar: /public/public/clamscans/*.txt: Cannot stat: No such file or directory
tar: Error exit delayed from previous errors
mv: cannot stat `/public/public/clamscans/*.txt': No such file or directory
I know with windows you can add the 2>&1 to capture error data. Is there such a thing for Linux?
I have designed name based virtual hosting in apache. as of now,I am able to access website using IP also. which is I am looking to block, only can access by the name
View 7 Replies View Relatedls -al ../public-back
drwxrwxr-x 4 apache apache 4096 Apr 19 03:32 templates
ls -al ../public-back/templates
drwxrwxr-x 2 apache apache 4096 Apr 19 03:33 content
[code]....
How do I move the contents of /public-back/templates recursively with permissions into /public/templates ?
I getting a error when i try to run VLC on my rhel5 box
VLC media player 1.1.7 The Luggage (revision exported)
LibVLC has detected an unusable buggy GNU/libc version.
Please update to version 2.8 or newer.\
[code].....
I have RHEL 5.5 ,Suse linex and windows7 is also running in my system. I am not able to connect to internet from Linux, but internet is working in windows 7 and suse. The service provider is qwest and they say that they do not support linux.
View 3 Replies View Relatedi recently changed my broadband provider and since then i havent been able to connect to the internet. I have configured all the settings on my laptop,(ive got puppy linux 4 on it). All the settings say i have a valid connection to the wireless connection and that its recognised the new provider but when i try to access the internet i get the page that says UNABLE TO CONNECT TO SERVER and it also says that i need to check my network connections etc etc. Ive done all that and it appears that i have everything in the right place. SO WHY wont it connect.
View 1 Replies View RelatedI'm trying to write a p2p file sharing program using python's built-in libraries. Everything is going well. The only thing is that i'd like to be able to use openssl public and private keys so only a host with the public key could access/decrypt the filesharing. I've gotten these libraries (httplib, basehttpserver, ssl, os) to work using just a pem file containing both the public and private keys but no success with them seperately. Can someone point me in the right direction or offer an alternative? PS, the goal of the project is to create an anonymous, decentralized, secure file sharing program. I want to be able to upload this to sourceforge so everyone can use it, if that's any incentive
View 2 Replies View RelatedHow can I forward all traffic from a public IP to another public IP. Let's say I have a first debian box named box1 with eth0 = 1.1.1.1 and eth0:1 = 1.1.1.2 and I want to forward all traffic from 1.1.1.2 to "box2" located somewhere else over the internet and having for eth0 2.2.2.2 Both 1.1.1.0/24 and 3.3.3.0/24 are public IP ranges.
View 1 Replies View RelatedSo I'm holding my nose and gonna get a shared hosting account. Sorry to sound a snob, maybe I am and tx God there are some of us left! Fact is, I'm a VPS kinda guy but need a shared host for a tech book I'm commissioned to write.
I was with Lunarpages a while off. Thought they were pretty good 'till they lost my db. Not an option. HostGator? Or who? I want cheap as chips. And that's about it. I'll only really be playing with cPanel .. aah, so I need that too. But it would be nice to have some sort of reliability, and I need one of the 'big boys' 'cos many of the target audience for this tome will have that kind of host.
one tell me the internal working of kill command. that is how it kills a process internally or from where it picks file to continue its process.
View 3 Replies View RelatedI have a high priority service that I start with sudo nice -n -10 process. This process does not need superuser rights though, except for the priority elevation. But nice requires superuser privileges to elevate priority.
View 3 Replies View Relatedsend the details raid configuration how to use in linux el5 and how to indentify the raid degrade process and how to rebuilt the process.
View 4 Replies View RelatedCode:
#include <stdio.h>
#include <unistd.h>
#include <signal.h>
[code]....
Description of what the code does or what i intended to do:
1. Created a child process from parent process using 'fork()'
2. Sent a signal 'SIGALRM' from child process to parent process using 'sigqueue' function.
(The Third parameter of 'siqueue' function contains the message (message msg) which the child process wants to send to the parent process.'msg' is a stucture instance containing a) pid of child and b) string) 5. Print the 'msg' sent by child process inside the signal handler function 'sig_action_function' of the parent process I am getting some junk value when this line is executed
Code:
printf("%d
",msg->cpid);
I expected to get the pid of child process, which the child process sent to parent process through the signal.
So I got myself a domain. I would like to have ssh access to the hosted account, free email, storage, bandwidth, and I dont want ANY ads. Can anyone save me lots of headache and point me in the right direction?
View 4 Replies View Relatedas we all know Process Scheduler does Process scheduling and its a process as well. I was just wondering that if this happens then the Process "Process Scheduler" should be a part of Process queue as well.
So if there are 5 process are there in Process queue & process scheduler is administrating them then since its also a process, once it puts a process under RUN state it should itself go inside queue because at one instant only one process can get executed on a processor. This is quite confusing for me. Please help me out. I tried to search on this but could not find any relevant topics.
How do you find the parent process of zombie processes?
When the child process is something where the parent is not entirely obvious...
Is there some way to list processes in tree format or something?
I have a process running on Linux.When i do ps -eaf | grep <myProcess>, it show muliple entries for <myProcess> with different pids for each entry.Kindly tell me what could be the reason for a process having multiple pids?
View 1 Replies View RelatedI have recently acquired a VA Linux 1220 Server 2x P3 866MHz 1GB RAM 80GB HDD. It's Totally blank (incl no OS) and looking for any newbie information that I might need to know to get started, including the OS version. Basically, as I said i'm totally new to this, We have Hosting Servers at work that I have been playing around with some vi commands etc.. And would like to study/learn at home...
View 1 Replies View Relatedam having following error while installing TimeTrex payrollable Cache Directory: Warning: Not writable (/hrm/cache) Writable Storage Directory:arning: Not writable (/hrm/storage) Writable Log Directory: Warning: Not writable (/hrm/log) I did apply permission settings: i.e777 on cpanel.but invain.i got info. abt .htaccess files from where we can apply write attributes to the directory. (not getting how to apply on a linux based hosting)
View 1 Replies View RelatedI recently got a static IP from my ISP. I Have two machines connected to my DLink wireless router. A windows laptop and linux machine runninf centos 5.3. I would like to host an application apache/tomcat based on my linux machine and would like people to access it from the outside. What configurations do I need to make on the Dlink wireless router and my linux box to make it work.
View 1 Replies View RelatedEverything works fine in doing this, however every time a user logs into the Windows Citrix Session the roaming profile created on the linux samba share creates their Windows Profile with a 755 perms. I understand that the default umask is (globally on my RHEL host is 022 ??) but in my smb.conf file the definition that is defined for the directory is set to a create mask of 0700. What is going on?
View 3 Replies View RelatedI want ro ran new commandy after sungrid finish his task.Exp:qsub -q bla command1; command2 command2 start only when job of command1 finished.
View 9 Replies View RelatedI've been running my shellscript for about half an hour now. It's taking longer than I thought to process all the data. I have the process ID of it. Is it possible to save the process and log out then log in and continue the process? I know how to pause a process using kill -pause pID and continue it using kill -cont pID. But that only work if you don't log out after pausing it.
View 5 Replies View RelatedI am having vitural hosting around three websites using Centos. I need to type in the full domain name include www to enter the 2 of the vitural hosting sites. Pros and Cons of vitural hosting vs separate machine? I got a questions about static IP. Assume I having a linksys router with port forwarding function, I have three seperate machines with different private address connect to the same linksys router. Can I entry all private address forward to port 80? Does it work? If I insist to host website on three machines, does that mean I need 3 static IP and 3 linksys router? I got two conventional web services only showing information but one got mysql db for user to input data, thats why I asking if it is good idea to seperate web page on different machines.
View 14 Replies View RelatedI'm looking for a virtual server somewhere, and wanting some opinions. I use slackware exclusively in home/office in a small network install, and I just love it.
I like rackspace, but they only have Arch Linux (closest thing to slack they have). Are there are opinions out there on this? Does slackware translate well to a fully-fledged LAMP server? I will have multiple projects hosted on said server for multiple clients.
I've recently made the move from Lenny to Squeeze. I'm really excited about using ekiga/qutecom as viable alternatives for skype. So far, ekiga has been working moderately well for me. I would like to try qutecom, however I wanted to ask, what (preferably free) SIP providers do you use?
View 2 Replies View RelatedI can't find GNU's public key anywhere. I searched on ftp.gnu.org and I googled, and I can't find their public key.
View 2 Replies View Related