- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Logs files in Virtual Vault
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-30-2002 07:02 PM
05-30-2002 07:02 PM
Logs files in Virtual Vault
I had a web server running in HP-UX Virtual Vault OS in A-class machine. There are some logs files that growth quite rapidly. So I want to trim those log files. However, my colleagues had deleted one of the log files accidentally. The log files are located in /opt/server4/https-
Thanks very much.
Kenny.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-30-2002 07:12 PM
05-30-2002 07:12 PM
Re: Logs files in Virtual Vault
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-30-2002 07:25 PM
05-30-2002 07:25 PM
Re: Logs files in Virtual Vault
Thanks.
Kenny.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-30-2002 07:55 PM
05-30-2002 07:55 PM
Re: Logs files in Virtual Vault
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-30-2002 08:29 PM
05-30-2002 08:29 PM
Re: Logs files in Virtual Vault
Do you have any idea?
Thanks.
Kenny.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-30-2002 08:53 PM
05-30-2002 08:53 PM
Re: Logs files in Virtual Vault
# cd /sbin/init.d
# grep httpd *
==> if not found then you'll have to restart ns-httpd manually.
I can't quite remember the command .. the way I used to do it is like so ..
# cd $NETSCAPE/bin
==> I have $NETSCAPE set in my profile
# ./ns-httpd -d $NETSCAPE-CONF
==> again I can't recall the full path of the config file.
Lets look at the process you have.. can you post this ..
# ps -ef|grep httpd
That will help to determine how the daemon is startup, which option and which config file, etc.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-30-2002 10:03 PM
05-30-2002 10:03 PM
Re: Logs files in Virtual Vault
Also, the ps -ef | grep httpd is:
ns-httpd -d /opt/server4/https-
/opt/vaultTS/bin/vvmgrhttpd
ns-httpd -d /opt/server4/https-admserv/config
So what command can I use to start the ns-httpd daemon?
Thanks.
Kenny.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-30-2002 10:18 PM
05-30-2002 10:18 PM
Re: Logs files in Virtual Vault
That leaves us with these ..
ns-httpd -d /opt/server4/https-
and
ns-httpd -d /opt/server4/https-admserv/config
Since I'm not sure if both of them are parent-child related processes or separate processes I still need the PID, PPID from the output
# ps -ef|grep ns-httpd
This time post the complete line so that we can see the PID and PPID. Thanks..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-30-2002 10:21 PM
05-30-2002 10:21 PM
Re: Logs files in Virtual Vault
In netscape, you can run many instance of http. In your case it is only one.
ie.
"ns-httpd -d
/opt/server4/https-admserv/config"
So in general you should have a 'start', 'restart' and 'stop' script under "/opt/server4/https-admserv/"
With the help of this you can restart your netscape. Also the logfile is not getting generated because of the time-stamp. So on re-starting it should go fine.
Regards,
Gnana A.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-31-2002 12:43 AM
05-31-2002 12:43 AM
Re: Logs files in Virtual Vault
Thanks very much for your help.
Kenny.