From the html, i get
<a href="http://<server name>:7778/pls/iss/ISSDBA.install_document">
so i telnet to the according server, i have searched the whole server, find . -name pls(iss)(ISSDBA.install_document) but i cannot seem to find the file.
That should be in the root of your webserver (where your webserver is installed), for example something like this:
/usr/netscape/server4/pls/iss/..../..../.../....
Try this to search if you want, and see if it works. If not just find out where you installed your webserver and you should be able to find it easy enough:
i have search in and out of my /export/home/iasdba/portal904/Apache/Apache/htdocs...
Nothing came out..
It is weird though, i seem cannot find pls or iss directory or ISSDBA.install_document in my server. Is it in some way the file is directed from another server?
I have found and view through file /export/home/iasdba/portal904/Apache/Apache/conf/httpd.conf which has 7778 entry in it. What should i be looking for?
I dunno about dtrace, please show me how to utilize it.
Hi,
I am currently using the find below to remove old files. I am redirecting the listing to a file and then use a while-loop and do a rm
cd ${directory}
find . \( ! -name . -prune \) \( -type f -name "*.trc" -mtime +10 \) | sed 's#^./##' | sed "s#^#${directory}/#" 2>/dev/null | tee -a... (4 Replies)
I need assistance with following requirement, I am new to Unix.
I want to do the following task but stuck with file creation date(sysdate)
Following is the requirement
I need to create a script that will read the abc/xyz/klm folder and look for *.err files for that day’s date and then send an... (4 Replies)
Hi all ,
I'm new to unix
I have a checked project , there exists a file called xxx.config .
now my task is to find all the files in the checked out project which references to this xxx.config file.
how do i use grep or find command . (2 Replies)
Hello,
Can anybody please tell me the command to find out the filesystem or a file which is consuming larger disk space sing i want to find out the file and want to compress it
please help me out
any help would be appreciated (6 Replies)
I need to find whether there is a file named vijay is there or not in folder named "opt" .I tried "ls *|grep vijay" but it showed permission problem.
so i need to use find command (6 Replies)