Search Results

Search: Posts Made By: npandith
Forum: Solaris 08-18-2014
3,514
Posted By npandith
You may want to look at PCA tool. I use this for...
You may want to look at PCA tool. I use this for solaris patch reporting and patching servers. Its a great tool to compare patches, patching servers, downloading the missing patches and tons of other...
Forum: Linux 08-08-2014
2,648
Posted By npandith
I would suggest to create a separate partition on...
I would suggest to create a separate partition on your windows machine and install linux on that partition to be on safer side(chose linux boot when you get windows boot list). You can try it out for...
Forum: Solaris 08-08-2014
53,151
Posted By npandith
Easiest way is to install xming(x-server) on your...
Easiest way is to install xming(x-server) on your desktop and enable X11 forwarding on your ssh client?(like putty or whatever you use). Then login as your user, check the display is set using echo...
Forum: Solaris 06-26-2014
23,557
Posted By npandith
Can you check the logs and see whether the failed...
Can you check the logs and see whether the failed logins are via keyboard interactive? Do you have ftp/sftp or key authentication?
Forum: Web Development 04-04-2014
8,494
Posted By npandith
Can you provide us what Listen address you have...
Can you provide us what Listen address you have configured in httpd.conf? Provide "Listen" line from httpd.conf . Thanks!
9,713
Posted By npandith
Instead of single quote ' use ` (which is next to...
Instead of single quote ' use ` (which is next to "1" in the keyboard or along with "~")

Before-

for updatefile in 'ls /tmp/updates';do



After changing-


for updatefile in `ls...
9,713
Posted By npandith
you have to change the symbol in the "for" loop...
you have to change the symbol in the "for" loop from ' to `


for updatefile in `ls /tmp/updates`;do
3,829
Posted By npandith
you can actually run dmsetup ls and compare it...
you can actually run dmsetup ls and compare it with the lvdisplay command(Block Device)


#dmsetup ls
#lvdisplay
3,829
Posted By npandith
From the above outputs, looks like dm-7 is not...
From the above outputs, looks like dm-7 is not for any of your file systems.

mpathb (3600508b4000d3f600000600006430000) dm-7 HP,HSV450
[size=40G][features=1 queue_if_no_path][hwhandler=0]
...
3,829
Posted By npandith
It will be great if you could post some of these...
It will be great if you could post some of these outputs below. Also do you use LVM on this machine?


#df -h
#fdisk -l
#multipath -v2


Thanks!
9,713
Posted By npandith
Give space after "if" statement if [ -a...
Give space after "if" statement


if [ -a /tmp/secondboot ]
Forum: Linux 03-28-2014
1,254
Posted By npandith
I'm assuming you want to know if the server is...
I'm assuming you want to know if the server is using dhcp address or not? If so, you can grep for dhclient or even you can check /etc/sysconfig/network-scripts/ifconfig-interfacename for...
Forum: Solaris 03-28-2014
2,899
Posted By npandith
So the web portal uses the OS local accounts for...
So the web portal uses the OS local accounts for login? or the web portal is integrated with Active Directory or other tools. I don't think its a issue with local account. Have you noticed any other...
9,713
Posted By npandith
hostname can be without parentheses. ...
hostname can be without parentheses.

HOSTNAME=`hostname`
9,713
Posted By npandith
Sorry there was a typo. Missed / in the sed...
Sorry there was a typo. Missed / in the sed command. Please try this

sed -i 's/^M/g/' /var/tmp/vimv3.sh

If you still get ^M error then other way is to use vi to remove it.

#vi...
9,713
Posted By npandith
I guess you will be running SuSE, could you...
I guess you will be running SuSE, could you please provide cat /etc/*release output for me.

For the server name you can use this

HOSTNAME=`hostname`


If you are using SuSE, then to install...
Forum: Solaris 03-28-2014
2,899
Posted By npandith
Are you seeing any jump in dates on the OS? or...
Are you seeing any jump in dates on the OS? or its just the Application picking up different dates
9,713
Posted By npandith
Well! its always better to write scripts on a...
Well! its always better to write scripts on a unix server itself rather than writing it on notepad or on windows as it may generate Control-M characters(^M) as you have received now. Please run this...
3,124
Posted By npandith
If its on NIS, then make sure your account is...
If its on NIS, then make sure your account is actually exists on the NIS master server. If it exists, make sure /etc/passwd has sybase entry.

#getent passwd sybase
3,124
Posted By npandith
Along with checking if its a nfs mount, i would...
Along with checking if its a nfs mount, i would suggest also to use truss to see if it gives whats happening, getfacl, and make sure file system is not on read only mode and you are able to create...
Forum: Solaris 10-22-2012
3,134
Posted By npandith
I apologize for the typo, all the letters are...
I apologize for the typo, all the letters are lower case, try these

svcs -xv
svcs -a | grep -i ssh
who -r
svcs -a | grep -i network
Forum: Solaris 10-22-2012
3,134
Posted By npandith
Can you paste the output of below commands? ...
Can you paste the output of below commands?

Svcs -xv
Svcs -a|grep -a ssh
Who -r
Svcs -a|grep -i network
Forum: Solaris 12-22-2011
4,167
Posted By npandith
Make sure all the FC links are up. luxadm -e...
Make sure all the FC links are up.

luxadm -e port

Also check if you are able to see the WWPN using fcinfo

---------- Post updated at 09:33 AM ---------- Previous update was at 09:30 AM...
Forum: Solaris 12-21-2011
2,255
Posted By npandith
You can create a disk group and encapsulate the...
You can create a disk group and encapsulate the disk.

# vxdg init rootdg
# vxdctl add disk <DEVICE> type=sliced
# vxencap -g rootdg rootdisk=<DEVICE>
Forum: Solaris 12-21-2011
10,819
Posted By npandith
Make a DNS entry in /etc/resolv.conf and make...
Make a DNS entry in /etc/resolv.conf and make sure you have "dns" word in the /etc/nsswitch.conf next to "hosts" entry.

hosts: dns files
Showing results 1 to 25 of 25

 
All times are GMT -4. The time now is 10:17 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy