Started 1 day, 7 hours ago (2009-12-14 19:32:00)
by frank_rizzo
disabling remote login for root is a good thing and should be done. It should be done for the application id also if possible. Check the requirements on the software. It's possible it does require it. If it does I would ask the vendor to change it.
Started 1 day, 9 hours ago (2009-12-14 17:32:00)
by jim mcnamara
I don't have a solution - just a comment.
A process can create a file with open(), then remove the file. The process at this point now has a file which does not show up in utilities like ls, for example. The file is removed from the filesystem when the last process that has a decriptor for the file closes the
descriptor. This can make it hard to find the process behind the problem....
Started 1 day, 16 hours ago (2009-12-14 10:32:00)
by scottn
One option:
Code:
mv ?ACCTS_INDX_TS1_02.
DBF ACCTS_INDX_TS1_02.DBF
Started 6 days, 16 hours ago (2009-12-09 10:29:00)
by TheGunMan
Hi I would really appreciate your help:
First I knew there are a few ways to do it:
1. Best is to set up sudoer...I'd like to see this as the last resort...there's a good reason for that ...
2. use setuid command, but that command needs to be a binary executable, while my command is a
shell script. Convert it to executable is hard because the box is an AIX 5.3 and I cannot convince ...
Started 1 day, 19 hours ago (2009-12-14 07:32:00)
by tamitot
you can either use scp or sftp.
sftp works just like ftp, interactive, but does the
data transfer using ssh. in simplest form:
Code:
sftp user@host
Started 1 day, 19 hours ago (2009-12-14 07:32:00)
by achenle
Your read() call probably returned -1 and didn't modify the contents of the buffer.
Started 1 day, 20 hours ago (2009-12-14 06:33:00)
by vbe
Its a "classic"...
I havent yet tried a variant to use in
ssh mode (since you were using scp...) or style, perhaps you will give me a good solution (while Im busy at other things... but I know it will be handy for me beginning next year...)
I till now used for such purpose (copying filsystem content from on host to another) 2 things:
1)the use of .rhosts file
2) tar
command on source host:...
Started 1 day, 20 hours ago (2009-12-14 06:33:00)
by vbe
In this case you should get your
sysadm to add in sudoers a line like this:
Code:
user ALL = NOPASSWD : /usr/bin/su - newuser -c <the command(s)...>
Started 3 days, 16 hours ago (2009-12-12 11:19:00)
by m1xram
You're trying to login so I realize you can't provide much detail but we don't know whether the page requires GET or POST method. The first method, GET, puts the information you supply into the URL. The second method, POST, puts the information into the header of the HTTP request.
If there's a login form on the web page you can look
at the source HTML, find the form, see what method it uses, ...
Started 4 days, 19 hours ago (2009-12-11 07:40:00)
by thegeek
Code:
/logs/system/mindundi/* {
rotate 0
daily
missingok
sharedscripts
postrotate
find /logs/system/mindundi/ -name "*log" -
mtime +15 -exec /bin/rm -f {} \;
endscript
}