Can refer to either the plural of job meaning profession or Steve Jobs (former Apple CEO).
-1
votes
2answers
186 views
FTP backup for site & Database - Rackspace Cloud Sites
I need help creating a backup script for Rackspace Cloud sites.
The sites need daily backups for both the web site & their mysql databases (some sites have as many as 4 databases), the backups ...
4
votes
2answers
223 views
Sharing responsibilities within a SysAdmin team
I used to work in a small System Administration team that consisted of 3 members. We each had our own area:
E-mail
Server build and monitoring
File sharing
I am not sure if this is typical but it ...
0
votes
1answer
309 views
Why does BitsAdmin.exe not finish a download and leaves just a tmp file?
Still learning how to use BitsAdmin.exe in batch files. Here is my script, which fails to finish downloading a file, and leaves just a temp file called "BIT851.tmp" on my desktop. Any idea what I am ...
0
votes
0answers
42 views
Can I delete my configuration files after submitting a job?
If I submit a set of jobs using PBS in this way:
for f in configfiles
do
qsub [options] ./script.sh $f
done
Can I remove the config files as soon as the job has been submitted, e.g.:
for f in ...
1
vote
2answers
304 views
Linux Background PHP process
Ok, this seems really weird. When I am running a php script from the command line with & at the end to run it in the background, it's immediately stopped. I tried it on another server and it ...
0
votes
1answer
467 views
How much is paid to a Junior and Advanced System Administrator? [closed]
trying to understand, according to SAGE levels in http://www.sage.org/pubs/8_jobs/chapter1.pdf, how much should be paid to a Level II and Level III sysadmins.
Thanks.
0
votes
2answers
200 views
IT Assistant salary for college student [closed]
How much should a person working as an IT Assistant doing intranet development on drupal and anything else needed to be done with the computers/network at any of our five locations supporting ~150 ...
1
vote
1answer
214 views
Difference between a “Network Engineer” and “IP Engineer”
Is there any PRACTICAL difference between a "Network Engineer" and an "IP Engineer" ?
0
votes
2answers
129 views
how to see the the status of cron jobs in websites using linux
my website developer told me that Cron jobs are scheduled. but nothing seems to be getting updates on the website. Please suggest how / where to check the status of cron jobs execution. Please help.
...
0
votes
0answers
64 views
SQL Job to run 5 consecutive Push Sync's
I am trying to set up a SQL Job to run 5 different Push Sync's to my Re-Publishing Servers. To be clear, I have 4 Re-Publishers and each of those has 5 different Replication Sets. I created a Job ...
1
vote
1answer
237 views
How to get hudson to parse the pom then add my own build goals
Does anyone know how to make hudson parse the pom.xml for a maven project, then allow the user to add the goals to each sub module? I am trying to write a script that will automate adding this but I ...
2
votes
2answers
557 views
SQL Server 2008 (SSMS) : Find next run date for a job
I would like to know if there is a way to get the next time a job is supposed to be running in SQL Server 2008, using a T-SQL query or even in SSMS if possible, without having to consult all the ...
3
votes
1answer
909 views
Send sql server job alert only when a query has rows to return
I have a query that checks if we've made sales of a particular stock item
select * from merchand_history where stock_code = 'zzz007' and create_timestamp >= getdate() order by create_timestamp ...
4
votes
4answers
412 views
Is it dangerous to have several parallel jobs create the same directory at the same time?
Is it dangerous to have several parallel jobs create the same directory using mkdir -p? (This is under Linux.)
In my case, I send many jobs to a SUN grid to process them in parallel, and some of ...
12
votes
10answers
1k views
What is 'FizzBuzz' for system administrators? [closed]
FizzBuzz is a simple test of programing ability, often used by employers to weed out people who can't actually program. Is there an equivalent test for system administrators and general IT guys?
...
4
votes
2answers
1k views
Running “Rebuild Index” maintenance plan with “Online indexing”
I am using Windows Server 2003 SP 2 and SQL Server 2005 Enterprise edition
I am creating a "Rebuild Index" job for a particular database and I am successfully able to run the job.
But when I try to ...
1
vote
1answer
74 views
SQL Server Sync Jobs Betwen Primary and Secondary Server…any script?
Please anybody suggest me how to write a script which compares the jobs on the primary and the secondary server.
Thanks,
Venk
1
vote
3answers
308 views
Tivoli Workload Scheduler
I'm being forced to work primarily with a Tivoli Workload Scheduler (TWS). My impression so far is that it is not user friendly to install and use and that has some strange aspects in its interface ...
2
votes
7answers
937 views
What is the pay/employment difference between Linux and Windows jobs [closed]
I am planning on getting my certification in windows or linux. I know windows better then I do linux but I am no stranger to Linux. I really do enjoy windows environments better but i am also thinking ...
1
vote
1answer
168 views
Where do cPanel cron jobs run from?
Does anyone know the folder where cPanel cron jobs are ran from? I was using a command that stores the contents and now I need to flush that data out of that folder. Thanks.
0
votes
1answer
85 views
Workplace Investigation [closed]
Not exactly a system administrator problem, I'll admit - however, ServerFault seems like the only active place where sysadmins are gathering, bar usenet. As part of the South Australian Certificate of ...
4
votes
3answers
367 views
Documenting Job Schedules?
Once upon a time, I thought I found the perfect way to document all scheduled jobs across all servers. I used Google Calendar and created a cal for each server and then added all the jobs as scheduled ...
3
votes
1answer
5k views
How to script SQL Server Jobs for migration
When migrating servers, how can I easily script all my SQL Server Jobs onto a new machine?
NOTE
Not accepting "backup msdb" as the answer.
1
vote
4answers
479 views
What happens if I disconnect when running a background process?
In both scenarios:
SSH access
Direct access
7
votes
5answers
9k views
How to send jobs to background without stopping them?
Ctrl+z sends the current job to background, but stops it.
And how to resume a stopped job?