Search Results

Search: Posts Made By: dehetoxic
Forum: Solaris 03-07-2012
12,127
Posted By jim mcnamara
Check /etc/profile and and "standard" user's...
Check /etc/profile and and "standard" user's .profile files (e.g., .bashrc for bash users) for ulimit.

Otherwise create a ulimit -n 65335 setting in the appropriate file, probably /etc/profile or...
Forum: Solaris 12-13-2011
2,431
Posted By bartus11
What does this show: grep logadm...
What does this show: grep logadm /var/spool/cron/crontabs/*
Forum: Solaris 11-29-2011
19,693
Posted By DukeNuke2
try to reset the message with "fmadm repair or...
try to reset the message with "fmadm repair or repaired" (depends on your solaris version). after that have a look if the message reappears. also check the output of "fmstat" for growing events on...
Forum: Solaris 11-29-2011
19,693
Posted By frappa
Hi, what if you try to go to the provided link_...
Hi,
what if you try to go to the provided link_
http://sun.com/msg/PCIEX-8000-G2

see ya
fra
Forum: Solaris 11-11-2011
7,368
Posted By jlliagre
I'm afraid you missed an important fact so let me...
I'm afraid you missed an important fact so let me rephrase it:
password policies aren't enforced when you are root.
Forum: Solaris 11-11-2011
7,368
Posted By jlliagre
Create a user as root then test your policy under...
Create a user as root then test your policy under that user's account.
Forum: Solaris 11-11-2011
7,368
Posted By jlliagre
Password policies are enforced for regular users...
Password policies are enforced for regular users but not for root which is the account you are using here.
4,115
Posted By itkamaraj
awk -F"[ :]" '{print $2}' log.log | sort | uniq...
awk -F"[ :]" '{print $2}' log.log | sort | uniq -c > hour.log
high_hour=$(sort -nr hour.log | head -1 | cut -d" " -f2)
awk -F"[ :]" -v h=$high_hour '$2==h {print $3}' log.log | sort | uniq -c >...
Forum: Solaris 05-10-2011
5,380
Posted By DukeNuke2
are there any tuning settings for the nxge nics?...
are there any tuning settings for the nxge nics? alos, which solaris version do you use?
Forum: Solaris 05-13-2011
19,250
Posted By jlliagre
The interfaces that show up in dladm but not with...
The interfaces that show up in dladm but not with ifconfig might also be used by exclusive IP non global zones.
Forum: Solaris 05-13-2011
19,250
Posted By DukeNuke2
prtconf != prtdiag
prtconf != prtdiag
Forum: Solaris 05-13-2011
19,250
Posted By bartus11
nxge cards and other e1000X NICs not visible in...
nxge cards and other e1000X NICs not visible in ifconfig output are probably just not configured. You can "plumb" them so they will be visible in ifconfig and then configure them with proper IP...
Forum: Solaris 05-13-2011
19,250
Posted By DukeNuke2
i would say you have 2 network cards (with two...
i would say you have 2 network cards (with two ports each) and 4 onboard networkinterfaces. the output of "prtdiag -v" would be helpfull to know more.
from "ifconfig" you can see there are only two...
12,549
Posted By DGPickett
I never liked << for most literal to stdin,...
I never liked << for most literal to stdin, preferring "echo ' ... '| ", as single quotes are pretty much all literal. You can escape $ with \, if you like << that much.
12,549
Posted By DGPickett
Well, you need the environment variable $PATH to...
Well, you need the environment variable $PATH to include the dir where sqlplus is installed, and $ORACLE_HOME correctly set, too. I assume SQL*PLUS is installed. Can I interest you in a nice...
12,549
Posted By DGPickett
sqlplus system/oracle as sysdba <<EOF
sqlplus system/oracle as sysdba <<EOF
4,115
Posted By itkamaraj
-F"[ :]" --> you are splits the entire line by...
-F"[ :]" --> you are splits the entire line by space and : as delimeter.

In the below line

2011-09-26 03:11:58,015 Thread-20565591 HTTP op [/createtemplatename

$1 --> 2011-09-26
$2 --> 03...
4,115
Posted By itkamaraj
awk -F"[ :]" '{print $2}' log.log | sort | uniq...
awk -F"[ :]" '{print $2}' log.log | sort | uniq -c
4,115
Posted By itkamaraj
did u give space between [ and : -F"[...
did u give space between [ and :


-F"[ :]"
4,115
Posted By itkamaraj
$ awk -F"[ :]" '{a[$3]++;next}END{for(i in...
$ awk -F"[ :]" '{a[$3]++;next}END{for(i in a){print i"_--->"a[i]}}' log.log
04_--->2
05_--->2

$ cat log.log
Sep 23 04:56:48 hsbcufs: [ID 213553 kern.notice] NOTICE: realloccg /: file system...
4,115
Posted By itkamaraj
$ awk -F"[ :]" '{a[$3]++;next}END{for(i in...
$ awk -F"[ :]" '{a[$3]++;next}END{for(i in a){print i"_--->"a[i]}}' log.log
04_--->22
05_--->23
4,115
Posted By frank_rizzo
you will need to write a script to parse the log.
you will need to write a script to parse the log.
4,115
Posted By itkamaraj
$ awk -F"[ :]" '{print $3}' log.log | sort |...
$ awk -F"[ :]" '{print $3}' log.log | sort | uniq -c
22 04
23 05
Forum: Solaris 05-10-2011
5,380
Posted By DukeNuke2
have a look here: Networks - Siwiki...
have a look here:
Networks - Siwiki (http://www.solarisinternals.com/wiki/index.php/Networks)
and especially this part:...
Forum: Solaris 05-10-2011
5,380
Posted By DukeNuke2
just have a look if there are some actual tuning...
just have a look if there are some actual tuning settings... if yes, take them out and try without the settings... if the above messages still appear, we've to look for other problems.
Showing results 1 to 25 of 25

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