Sponsored Content
Top Forums Shell Programming and Scripting How to kill the process when the file is locked? Post 302956595 by vbe on Thursday 1st of October 2015 08:46:49 AM
Old 10-01-2015
This is for a SAS 9.4 :
HOME=/opt/sas/9.4/SASFoundation/9.4/

You should have config files for share, if you dont
Go to $HOME/utilities/bin
If you dont have a directory called files create it with owner and group the appropriate SAS user
Create the followings files you need to modify according to what you want as shared libraries

create a .sas file e.g. start_share.sas
with in:
Code:
%let servername=sashrsrv;
options comamid=tcp;
libname geco '/data/mnt2/geco' ;
libname stil '/data/mnt1/stil' ;
libname fire '/data/mnt3/fire' ;
proc server id=&servername authenticate=optional;
run;

and a stop_share.sas file:
Code:
%let servername=sashrsrv;
options comamid=tcp;
proc operate server=&servername;
stop server;
quit;

Now you need to write a script to call those 2 files to start and stop SHARE:
e.g. here is for the start
Code:
HOME=/opt/sas/9.4/SASFoundation/9.4/utilities/bin/files
SASROOT=/opt/sas/9.4/SASFoundation/9.4
ConfigFile1=$HOME/start_share.sas
ConfigFile2=$HOME/stop_share.sas
LOGFILE1=/var/opt/sas/share/start_s94s.log
LOGFILE2=/var/opt/sas/share/stop_s94s.log

nohup $SASROOT/sas -sysin $ConfigFile1 -noterminal -logparm "write=immediate"\
       -log $LOGFILE1" >/var/opt/sas/log/rc.sas94share.log 2>&1
...

the stop command would be:
Code:
nohup $SASROOT/sas -sysin $ConfigFile2 -noterminal -unbuflog -log $LOGFILE2" \
        >>/var/opt/sas/log/rc.sas94share.log 2>&1

I let you adapt to your needs...
write a nice start/stop script you can put in the servers booting process ...

Last edited by vbe; 10-01-2015 at 09:57 AM.. Reason: corrections...
This User Gave Thanks to vbe For This Post:
 

10 More Discussions You Might Find Interesting

1. Post Here to Contact Site Administrators and Moderators

how to kill process from file

hello i want to write a script in unix which read file that contains : hour and process_id like this file bbb: 0:30 6678 1:40 8789 and for every line he check if the hour greater then 30 minutes he kill the process_id the script looks like this cat bbb | while read line do ... (1 Reply)
Discussion started by: naamas03
1 Replies

2. Shell Programming and Scripting

how to kill process from file

i have a script that read a file which contains process_id and time that he's in and it lookes like this 0:30 54545 0:44 66788 0:90 23233 i need to read every line in the file and get the time and if the process is greater then 0:30 to kill the process id the script looks like... (17 Replies)
Discussion started by: naamas03
17 Replies

3. UNIX for Advanced & Expert Users

When kill doesnt work, how to kill a process ?

Hi All, I am unable to kill a process using kill command. I am using HP-UX system. I have tried with kill -9 and i have root privilages. How can i terminate this daemon ? ? ? Regards, Vijay Hegde (3 Replies)
Discussion started by: VijayHegde
3 Replies

4. Programming

kill(0,-9) don't kill the process

Hi all i have simple c program , when i wish to kill the app im using kill(0,-9) , but it seams this command don't do any thing and the program. just ignore it . what im doing wrong here ? im using HP-UX ia64 Thanks (9 Replies)
Discussion started by: umen
9 Replies

5. Shell Programming and Scripting

Kill a process without using kill command

Sorry, posted the question in other forum. (0 Replies)
Discussion started by: sudhamacs
0 Replies

6. Shell Programming and Scripting

kill process from a file or directly with top

i have edited a script to kill an exact mysql process is causing the high load on the server, my problem is, kill dont kill it! script: #!/bin/sh top -n 1 -u mysql | grep mysqld | awk '{print $1}' > pid proc='cat pid' kill -9 $proc or i try with kill -9 `top -n 1 -u mysql | grep mysqld... (8 Replies)
Discussion started by: chandro
8 Replies

7. Shell Programming and Scripting

Kill an specific process ID using the KILL and GREP commands

Good afternoon I need to KILL a process in a single command sentence, for example: kill -9 `ps -aef | grep 'CAL255.4ge' | grep -v grep | awk '{print $2}'` That sentence Kills the process ID corresponding to the program CAL255.4ge. However it is possible that the same program... (6 Replies)
Discussion started by: enriquegm82
6 Replies

8. Proxy Server

Samba kill the locked files from a useraccount by multiple smbd pids

Details Samba server: Release: 5.10 Kernel architecture: sun4u Application architecture: sparc Hardware provider: Sun_Microsystems Kernel version: SunOS 5.10 Generic_142909-17 Samba version: Samba version 3.5.6 Smb.conf file section Global: # smb.conf for Airbus Industries fuer... (0 Replies)
Discussion started by: Jean-Guillaume
0 Replies

9. Shell Programming and Scripting

Soft kill a process to redirect the last kbytes output to a file

Hey guys, I have a python script that I call with this line: python mypythonscript.py >> results.csv &The problem is that the redirection from the stdout to the file results.csv only writes 4096 kbyte blocks. So if i kill this process with kill the last kbytes that the script produce will... (6 Replies)
Discussion started by: Mastaer
6 Replies

10. Shell Programming and Scripting

Shell script to report file size, pid and also kill the process

Hi All, Looking for a quick LINUX shell script which can continuously monitors the flle size, report the process which is creating a file greater than certain limit and also kill that process. Can someone please help me on this? (4 Replies)
Discussion started by: vasavimacherla
4 Replies
renice(1)							   User Commands							 renice(1)

NAME
renice - alter priority of running processes SYNOPSIS
renice [-n increment] [-i idtype] ID... renice [-n increment] [-g | -p | -u] ID... renice priority [-p] pid... [-g gid...] [-p pid...] [-u user...] renice priority -g gid... [-g gid...] [-p pid...] [-u user...] renice priority -u user... [-g gid...] [-p pid...] [-u user...] DESCRIPTION
The renice command alters the scheduling priority of one or more running processes. By default, the processes to be affected are specified by their process IDs. If the first operand is a number within the valid range of priorities (-20 to 20), renice will treat it as a priority (as in all but the first synopsis form). Otherwise, renice will treat it as an ID (as in the first synopsis form). Altering Process Priority Users other than the privileged user may only alter the priority of processes they own, and can only monotonically increase their "nice value" within the range 0 to 19. This prevents overriding administrative fiats. The privileged user may alter the priority of any process and set the priority to any value in the range -20 to 19. Useful priorities are: 19 (the affected processes will run only when nothing else in the system wants to); 0 (the "base" scheduling priority),; and any negative value (to make things go very fast). 20 is an acceptable nice value, but will be rounded down to 19. OPTIONS
renice supports the following option features: o The first operand, priority, must precede the options and can have the appearance of a multi-digit option. o The -g, -p, and -u options can each take multiple option-arguments. o The pid option-argument can be used without its -p option. o The -i option can be used to specify the ID type for the ID list. This is preferred in specifying ID type over the use of the -g | -p | -u syntax, which is now obsolete. See NOTES. The following options are supported: -g Interprets all operands or just the gid arguments as unsigned decimal integer process group IDs. -i This option, together with the ID list arguments, specifies a class of processes to which the renice command is to apply. The interpretation of the ID list depends on the value of idtype. The valid idtype arguments are: pid, pgid, uid, gid, sid, taskid, projid, and zoneid. -n increment Specifies how the system scheduling priority of the specified process or processes is to be adjusted. The increment option- argument is a positive or negative decimal integer that will be used to modify the system scheduling priority of the speci- fied process or processes. Positive increment values cause a lower system scheduling priority. Negative increment values may require appropriate privileges and will cause a higher system scheduling priority. -p Interprets all operands or just the pid arguments as unsigned decimal integer process IDs. The -p option is the default if no options are specified. -u Interprets all operands or just the user argument as users. If a user exists with a user name equal to the operand, then the user ID of that user will be used in further processing. Otherwise, if the operand represents an unsigned decimal inte- ger, it will be used as the numeric user ID of the user. OPERANDS
The following operands are supported: ID A process ID, process group ID, or user name/user ID, depending on the option selected. priority The value specified is taken as the actual system scheduling priority, rather than as an increment to the existing system scheduling priority. Specifying a scheduling priority higher than that of the existing process may require appropriate privileges. EXAMPLES
Example 1: Adjusting the scheduling priority of process IDs Adjust the system scheduling priority so that process IDs 987 and 32 would have a lower scheduling priority: example% renice -n 5 -p 987 32 Example 2: Adjusting the scheduling priority of group IDs Adjust the system scheduling priority so that group IDs 324 and 76 would have a higher scheduling priority, if the user has the appropriate privileges to do so: example% renice -n -4 -g 324 76 Example 3: Adjusting the scheduling priority of a user ID and user name Adjust the system scheduling priority so that numeric user ID 8 and user sas would have a lower scheduling priority: example% renice -n 4 -u 8 sas ENVIRONMENT VARIABLES
See environ(5) for descriptions of the following environment variables that affect the execution of renice: LANG, LC_ALL, LC_CTYPE, LC_MES- SAGES, and NLSPATH. EXIT STATUS
The following exit values are returned: 0 Successful completion. >0 An error occurred. FILES
/etc/passwd map user names to user IDs ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Availability |SUNWcsu | +-----------------------------+-----------------------------+ |Interface Stability |Standard | +-----------------------------+-----------------------------+ SEE ALSO
nice(1), passwd(1), priocntl(1), attributes(5), environ(5), standards(5) NOTES
The renice syntax renice [-n increment] [-i idtype] ID ... is preferred over the old syntax renice [-n increment] [-g | -p| -u] ID ... which is now obsolete. If you make the priority very negative, then the process cannot be interrupted. To regain control you must make the priority greater than 0. Users other than the privileged user cannot increase scheduling priorities of their own processes, even if they were the ones that decreased the priorities in the first place. The priocntl command subsumes the function of renice. SunOS 5.10 9 Jan 2004 renice(1)
All times are GMT -4. The time now is 09:09 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy