Странице

Ознаке

четвртак, 26. март 2015.

CIFS share not mounting at boot

For some reason CIFS share entry in /etc/fstab is not mounting at boot. With mount -a command its mounting fine.

Reason: netfs service was disabled

Solution:
chmod 755 netfs
chkconfig netfs on

петак, 20. март 2015.

Resize Partition and Filesystem

Extend Partition and Filesystem
 
Unmount partition:
umount /<mountpoint>

Delete partition
fdisk /dev/xvdb
Command (m for help): d
Selected partition 1
Command (m for help): p
Command (m for help): w

Create a new (larger) partition
fdisk /dev/xvdb
Command (m for help): n
Command action
   e extended 
   p primary partition (1-4) 
p

Partition number (1-4): 1
Command (m for help): p
Command (m for help): w
Run fsck on your filesystem
e2fsck -f /dev/xvdb1
Resize your filesystem with resize2fs
resize2fs /dev/xvdb1
Re-mount extended partition
mount /<mountpoint>

Reduce a Partition and Filesystem

Unmount partition:
umount /<mountpoint>

Run fsck on your filesystem
e2fsck -f /dev/xvdb1
Resize your filesystem with resize2fs
resize2fs /dev/xvdb1
Delete partition
fdisk /dev/xvdb
Command (m for help): d
Selected partition 1
Command (m for help): p
Command (m for help): w
Create a new (smaller) partition
fdisk /dev/xvdb
Command (m for help): n
Command action
e extended
p primary partition (1-4)
p
Partition number (1-4): 1
Command (m for help): p
Command (m for help): w
Re-mount shrinked partition
mount /<mountpoint>



понедељак, 2. март 2015.

System Hold, Fix Manager before resetting counters

The actual value of the manager is 0.
ERROR
“System Hold, Fix Manager before resetting counters”.
Solution:
1. Stop all middle tier services including the concurrent managers.
Please make sure that no FNDLIBR, FNDSM, or any process is running by ps -ef | grep FNDLIBR
2. Stop the database.
3. Start the database.
4. Go to cd $FND_TOP/bin
adrelink.sh force=y link_debug=y "fnd FNDLIBR"
adrelink.sh force=y link_debug=y "fnd FNDFS"
adrelink.sh force=y link_debug=y "fnd FNDCRM"
adrelink.sh force=y link_debug=y "fnd FNDSM"
5. Run the CMCLEAN.SQL script from the referenced note below + commit!