Read password from a file

 
Thread Tools Search this Thread
Homework and Emergencies Emergency UNIX and Linux Support Read password from a file
# 1  
Old 09-02-2011
Tools Read password from a file

Hello Gurus,

This is something i need to implement quite urgently. My requirement is as follows:

1. We are using Solaris 10, Sun Access Manager appln.
2. we need to start a domain through script (automated). Syntax of the command goes as below:
Code:
 ./asadmin start-domain --user admin domain1

after this it will prompt for a password
Code:
 Enter Password

I do not have any idea of passing the password in the command line. What i am trying to achieve is after it asks for password, it must be read it from a file where i have already maintained the details.

Please help me out... as I mentioned, it is something i need to test and implement on priority basis.
Thank You.

Last edited by pludi; 09-02-2011 at 06:17 AM..
# 2  
Old 09-02-2011
there is option called
PHP Code:
--passwordfile 
---------- Post updated at 11:35 AM ---------- Previous update was at 11:34 AM ----------

start-domain.1
This User Gave Thanks to itkamaraj For This Post:
# 3  
Old 09-02-2011
@itkamaraj: Thank you for the quick and easy solution. I presume the command would be as follows:

Code:
 ./asadmin start-domain --user admin --passwordfile passfile domain1

However I would also like to explore the option of reading the password from the file in the other way. Will it be possible ?

And where (i mean path) this password file is supposed to be placed?

Thank You.

Last edited by pludi; 09-02-2011 at 06:17 AM..
# 4  
Old 09-07-2011
Hi,

The above solution did work in stopping and starting the services when executed through scripts. But we landed into a dicey situation where in all the application services and agents are up but the application page is not openeing (front end). Not really sure if this post is in its right place..but please help.

thank you.
# 5  
Old 02-08-2012
Go with expect programming ... to pass password ..

You can use openssl file encryption and description method .
Code:
## Encrypt using openssl with password: sks and delete un-encrypted file
# openssl des3 -e -in a -out aa; rm -fr a
## varify
# cat aa
Salted__¡r>¼¶dÙK´¢&«s  ### Here's my script that read the encrypted file 
 # cat test.sh
IFS=$'\n'
for ln in `openssl des3 -d -in aa -out maa -pass pass:sks;cat maa; rm -fr maa`
do
echo $ln
sleep 3
done

--Shirish Shukla

Last edited by Scrutinizer; 04-09-2012 at 06:08 PM.. Reason: code tags
# 6  
Old 04-03-2012
Java fetch the password from file

hello dear,

try this
lets say my password is in /home/vipin/password

vi password.sh
pswd =/home/vipin/password

read =$pswd

try this ..
# 7  
Old 04-05-2012
@vipinkumarr89
Your post contains syntax errors and logic errors. Please test before you post.
Also, please look at the date on threads before replying.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Shell Script to Automatically Read My Password

I have a shell script to run set of commands every week . I dont have a root access on the server but I can run the commands using pbrun cat myscript.sh * * * pbrun command.... each time I run the script , it asks me for my password then it executes fine. ./myscript.sh Password... (7 Replies)
Discussion started by: Sara_84
7 Replies

2. Shell Programming and Scripting

How to read userid and password information from txt file

Hi Experts, I am writing a shell script (for displaying disk space details) which is logging to 15 different servers using following command. ssh userid@servername It is prompting me for password for all 15 servers when I manually run it. However , soon I would like to schedule this script... (4 Replies)
Discussion started by: ajaypatil_am
4 Replies

3. UNIX for Dummies Questions & Answers

password protect a CSV file: better solution than ZIP password?

Hi We send *.csv with sensitive data to our customers. Our customers open those files with Excel. A new requirement is that we password protect those CSV files. I thought to pack them with ZIP and assign a password to the archive. But Solaris 10 can't encrypt ZIP files. $ zip -P... (12 Replies)
Discussion started by: slashdotweenie
12 Replies

4. UNIX for Dummies Questions & Answers

When reading a csv file, counter to read 20 lines and wait for minute then read next 20 till end

Hello All, i am a newbie and need some help when reading a csv file in a bourne shell script. I want to read 10 lines, then wait for a minute and then do a reading of another 10 lines and so on in the same way. I want to do this till the end of file. Any inputs are appreciated ... (3 Replies)
Discussion started by: victor.s
3 Replies

5. Shell Programming and Scripting

loop to read multiple username and password

Hello all, I am i am trying to read username password. Bassicaly, i have file called sidlist and it has my database name, username and password.... looks something like this.... db1, user1, pass1 db2, user2, pass2 db3, user3, pass4 but i dont know how to make it work, until i get... (4 Replies)
Discussion started by: abdul.irfan2
4 Replies

6. Shell Programming and Scripting

sftp shell script - Password read error.

Hi, I have script which does the sftp function. In the script in one place it able to read the password from file and other place files with below error. warning: has much more security than supplying the password in the clear warning: on the command line. Failed to get password: File... (0 Replies)
Discussion started by: vino_hymi
0 Replies

7. Shell Programming and Scripting

Read userid and password

Am reading userid and password. code: pmsg "Enter the userid \n" read userid pmsg "Enter password \n" read password pmsg "Enter Database name \n" read database When user type password, it a clear text. I want something like ******** or just a blank any suggestion plz... ... (2 Replies)
Discussion started by: ilugopal
2 Replies

8. Shell Programming and Scripting

perl script example to take password hiden and read from it

Hi, I am new to perl scripting Can you please let me know if you have an example on how to read the hidden password and read from it? Thanks, Mahesh (1 Reply)
Discussion started by: mum6ue
1 Replies

9. Shell Programming and Scripting

Read Oracle Username password SID from single file and pass it to shell

Dear All I am trying to write one shell which will be running through Cron which contain one SQL query. But I want to draw/fetch the Username password and Instance name (required to loging to the database) from one single file to run that SQL query . Also this file contain details of multiple... (2 Replies)
Discussion started by: jhon
2 Replies

10. Shell Programming and Scripting

How To Read A File Remotely Without A Password?

Many thanks to anyone who can help me solve this problem I am having: I am working on an HP-UX system version B.11.11 and I have been tasked with finding a way to read a file on a remote server (cat, grep, etc.) using a specific userID without copying it or moving it to the local machine. ... (0 Replies)
Discussion started by: Korn0474
0 Replies
Login or Register to Ask a Question