Linux httpd service not start

[root@sunx4150 run]# ps -ef | grep http root      7222  6826  0 10:32 pts/1    00:00:00 grep http [root@sunx4150 run]# pwd /etc/httpd/run [root@sunx4150 run]# ls acpid.socket  dirmngr           hpssd.pid       mdadm           nscd         radvd          sshd.pid                vmnet-dhcpd-vmnet8.pid    xenstored agent.pid     dovecot           hpssd.port      mdmpd           ntpd.pid     rpc.statd.pid  sudo                    vmnet-natd-8.mac          xfs.pid atd.pid       dsviewserver.pid  httpd.pid       messagebus.pid  openldap     saslauthd      syslogd.pid             vmnet-natd-8.pid          xinetd.pid avahi-daemon  gather            iiim            mysqld          ppp         

Linux httpd service not start Read More »

How to Increase paging space logical volume size in AIX ?

To show the current paging space volume, its size along with other information use the ‘lsps’ command: # lsps -a Page Space      Physical Volume   Volume Group Size %Used Active  Auto  Type Chksum hd6             hdisk1            rootvg         512MB     2   yes   yes    lv     0 The paging space may be increased on the fly using the ‘chps’ command. In

How to Increase paging space logical volume size in AIX ? Read More »

How to Enable / Disable Multipathing Solaris 11 ?

How to Enable Multipathing Become an administrator. Confirm that the multipathing software package is installed. # pkg info system/storage/multipath-utilities Name: system/storage/multipath-utilities Summary: Solaris Multipathing CLI Description: Path Administration Utility for a Solaris Multipathing device Category: Applications/System Utilities State: Installed Publisher: solaris Version: 0.5.11 Build Release: 5.11 Branch: 0.175.0.0.0.0.0 Packaging Date: Tue Sep 27 01:40:01 2011

How to Enable / Disable Multipathing Solaris 11 ? Read More »

How to Increase swap size on Solaris (using ZFS) solaris 11

Firstly, check where your swap file is (it will be a ZFS volume created during the Solaris installation): bash-3.00# swap -l swapfile             dev  swaplo blocks   free /dev/zvol/dsk/rpool/swap 256,1      16 4194288 4194288 Then you will need to unmount it: bash-3.00# swap -d /dev/zvol/dsk/rpool/swap You should validate it

How to Increase swap size on Solaris (using ZFS) solaris 11 Read More »

Delete Files Older Than x Days on Linux / Unix

The find utility on linux allows you to pass in a bunch of interesting arguments, including one to execute another command on each file. We’ll use this in order to figure out what files are older than a certain number of days, and then use the rm command to delete them. Command Syntax find /path/to/files* -mtime

Delete Files Older Than x Days on Linux / Unix Read More »

Scroll to Top