Scripting language for system admin


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Scripting language for system admin
# 1  
Old 01-11-2007
Scripting language for system admin

Am trying to learn a scripting language to automate mundane system admin tasks. Being a Novice, Just trying to understand, which language would be easier to learn and one for all types.

i.e Perl or Shell scripting. Which of these would be good for a system admin, Database admin ??

pls. post your ideas on this.

Cheers...UBR
Smilie
# 2  
Old 01-11-2007
I'd say learn both. Most of my day-to-day automation is done using shell scripting (ksh/bash). Shell scripting is also a must for writing init scripts, etc, and you'll be surprised at how often you'll find yourself using conditional constructs and loops on the command line once you get proficient.

e.g.
for server in $servers; do ssh $server do_something; done
mailq | grep -B1 "Connection refused" | awk '{print $1}' | sed 's/\*$//' | while read id; do qtool -d /var/spool/mqueue/$id; done

You get the idea....

However, when interaction with databases is required, or real heavy duty reporting and text file parsing, I always write in Perl for the sheer flexibility of the language, the rich collection of modules available and the powerful regular expressions at your disposal.

PHP is another good language to pick up later on as you can create administrative web-based interfaces very easily. And a little C is never a bad thing.
# 3  
Old 01-11-2007
and I will add Python, if you have time read why Smilie
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Red Hat

Would like to study and take rh system admin exam.

hello, when the times comes where do I schedule for the linux system admin exam? I have taken exams before through vue or prometric I did not see rh system admin exam on either site? any feedback would be helpful such as cost? how many test is it one or two? is the comptia linux+ just as recognized... (3 Replies)
Discussion started by: arcolinux
3 Replies

2. Linux

Kernel developer or system admin

Hi, I am already working as Linux admin for last 5 years. Now I want to do something more. So wanted to ask you guys what would be better. I have 2 interests for making my future 1. Linux kernel development 2. Linux system admin + storage Welcome your thoughts!!! (5 Replies)
Discussion started by: prashant2507198
5 Replies

3. Red Hat

System Admin related document with example

Hi, I am looking for perfect document.which is covered all the admin role with examples..... --> Please say that "search in google"...... Can you please help on this.... Thanks & Regards, Mani (3 Replies)
Discussion started by: Mani_apr08
3 Replies

4. Homework & Coursework Questions

System Admin. Lab

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: Create a group id with your last name. Create 2 user IDs using your last name and the numbers 1 and 2. For each... (3 Replies)
Discussion started by: Jagst3r21
3 Replies

5. HP-UX

After becoming HP UX 11iV3 System Admin

What is a logical step forward to learn much more about HP UX? Learn HP Integrity BladeSystem Administration or learn more about scripting? Learn more about storage? Can someone tell me how to become more effective? I am already working with HP UX everyday. Thanks a lot for every reply I... (4 Replies)
Discussion started by: velde_van_der_a
4 Replies

6. AIX

L2 and L3 AIX System Admin Tasks

Hello Everyone...I am new to this forum and before asking i already see links for books and videos...I would like to know the tasks for L2 and L3 AIX System Admin. edit by bakunin: You shouldn't hijack others threads for your own questions. If you have a genuine question to ask you're entitled... (3 Replies)
Discussion started by: Allhappies
3 Replies

7. Shell Programming and Scripting

Alternative Scripting Language for UNIX/Linux System Administration

I do not know UNIX shell scripting so as an alternative which language would you think is better for daily System Administration tasks. Perl or PHP? I know a little about both. (5 Replies)
Discussion started by: blackopus
5 Replies

8. AIX

New to AIX System Admin

Hi everyone, im new to AIX, where can I find some free beginner AIX System admin guide which is similar to AIX Basic Operations V5 http://www-03.ibm.com/certify/tests/obj190.shtml (9 Replies)
Discussion started by: ibmer414
9 Replies

9. UNIX for Dummies Questions & Answers

what scripting language to use

Hi, I want to send system info like disk utilization, memory and things like that to be displayed on a web page. gathering the system info is simple. What do I use to transfer the data to the web server? Once the data is there, its not my problem anymore :D Thanks for any leads (5 Replies)
Discussion started by: 406
5 Replies

10. UNIX for Advanced & Expert Users

UNIX System Admin Document

Hi all I am trying to document my entire system (hardware/software/admin) Is there a template I could use for the purpose. This document will be the used by all System admins/ Management the company when they want to find out anyting about any of the servers we manage. If there is no such... (6 Replies)
Discussion started by: skotapal
6 Replies
Login or Register to Ask a Question