Search Results

Search: Posts Made By: kah00na
Forum: AIX 05-21-2019
11,724
Posted By kah00na
To monitor the maxuproc, I find the user's id...
To monitor the maxuproc, I find the user's id with: lsuser -a id user, then use: ps -fu $id | wc -l to count their processes.

--- Post updated at 02:57 PM ---

If you're interested, here's a...
Forum: AIX 03-15-2018
2,752
Posted By kah00na
Also, make sure you're using visudo instead of...
Also, make sure you're using visudo instead of trying to edit the config file directly.
Forum: AIX 03-15-2018
4,909
Posted By kah00na
You can get the last login time from the user...
You can get the last login time from the user attributes instead of relying on your last log (we roll ours monthly). This should work but it requires perl to be installed to translate the results...
Forum: AIX 09-10-2014
7,455
Posted By kah00na
I've seen many files have UID of 25 and GID of...
I've seen many files have UID of 25 and GID of 987 after the last two AIX upgrades I've done. Since neither that UID nor GID exist on my servers, I've added this as one of my post upgrade steps:...
Forum: AIX 09-03-2014
4,496
Posted By kah00na
I'm using "mailx" in almost all of my scripts so...
I'm using "mailx" in almost all of my scripts so instead of changing each one of them individually, I'd rather setup something in the sendmail.cf to change "root" to "root.admin".

---------- Post...
Forum: AIX 09-03-2014
4,496
Posted By kah00na
Change "root" to "root.admin" in outgoing e-mails
Our AIX servers send e-mails which have the "from" address set to "root@company.com" for our root user ("C{M}company.com" in /etc/sendmail.cf). The problem is that when bad e-mails are sent out or...
Forum: AIX 06-30-2014
28,172
Posted By kah00na
The SEA is configured on the VIO server and...
The SEA is configured on the VIO server and without access to the VIO server, I don't think you have any way to see if there is one. I don't think the LPAR itself (not VIO server) would even know...
Forum: AIX 06-27-2014
28,172
Posted By kah00na
I have 2 VIO servers and a network connection to...
I have 2 VIO servers and a network connection to each of them in an etherchannel so running entstat against the individually adapters doesn't work.
host:/:$ lsdev | grep ^ent
ent0 Available...
Forum: AIX 06-27-2014
2,514
Posted By kah00na
EDIT!! That did it... "-l" must send "info"...
EDIT!! That did it... "-l" must send "info" messages to the syslogd and the remote hostname/IP must be "info" level instead of "debug" level. Thanks rbatte1!

Jun 27 11:27:25 hostname...
Forum: AIX 06-27-2014
6,447
Posted By kah00na
I put this in my /etc/sendmail.cf file, but it...
I put this in my /etc/sendmail.cf file, but it changes all outgoing e-mails from the server to be from the domain "mycompany.com":
# class E: names that should be exposed as from this host, even if...
Forum: AIX 06-27-2014
2,514
Posted By kah00na
I'm using the FTP daemon that is part of the AIX...
I'm using the FTP daemon that is part of the AIX default install. The inetd.conf file has the ftpd executable listed in it with these arguments: ftpd -u 002 -d
What am I missing to get it to log...
Forum: AIX 06-27-2014
2,514
Posted By kah00na
Source IP not in my ftpd debug logs
I have random connections coming into my FTP server, but the source IP is not showing up in my logs. Here is what my logs look for me trying to connect as a "whatever" user that doesn't exist. You...
Forum: AIX 01-09-2013
3,645
Posted By kah00na
Devyn, let us know what you end up getting. I...
Devyn, let us know what you end up getting. I have memory for Power 5 and Power 5+ boxes you could have for the cost of shipping. You don't happen to be near Kansas, do you?
Forum: AIX 01-04-2013
6,734
Posted By kah00na
I guess that is why UNIX gives the option of...
I guess that is why UNIX gives the option of where you want the data because if you are worried about seek times, you'd want the data in the middle, if you were wanting raw speed to save a smaller...
Forum: AIX 01-04-2013
6,734
Posted By kah00na
The center is fastest? Outer tracks would have...
The center is fastest? Outer tracks would have more sectors so as the disk spins, the head is able to read more sectors in a single disk rotation, right?

---------- Post updated at 10:13 AM...
Forum: AIX 01-04-2013
6,734
Posted By kah00na
In smitty when you are creating a LV, you'll see:...
In smitty when you are creating a LV, you'll see:
POSITION on physical volume middle
You can change this to whatever you want. If you are using a SAN though, it probably...
Forum: AIX 12-20-2012
4,092
Posted By kah00na
When we had physical servers, we had the same...
When we had physical servers, we had the same error and it ended up being caused by our switch being configured to 1000 full and our adapter was set to auto/auto. Once we changed our adapter...
Forum: AIX 12-19-2012
11,770
Posted By kah00na
In the Installation and Maintenance menu,...
In the Installation and Maintenance menu, obviously you can see the DVD drive, but do you see the disks? Maybe you should check your disk assignments on the VIO servers; make sure your slot numbers...
Forum: AIX 12-18-2012
16,036
Posted By kah00na
You could do this. 1. Backup and delete the...
You could do this.
1. Backup and delete the /backup filesystem
2. Add another smaller disk to the rootvg (make sure it is big enough to hold all the remaining LVs)
3. Move the LVs to the new...
Forum: AIX 12-18-2012
11,770
Posted By kah00na
What are you trying to boot from? The DVD...
What are you trying to boot from? The DVD installation media or a virtual CD from the VIO server?
Forum: AIX 12-17-2012
9,032
Posted By kah00na
Do you have "auth.debug" enabled in your...
Do you have "auth.debug" enabled in your /etc/syslog.conf? If not, configure it and look in the logs and look for any errors in it. Here is my auth.debug line I use in my /etc/syslog.conf:...
Forum: AIX 12-13-2012
9,032
Posted By kah00na
I'm not sure how rsynch works, but I do know that...
I'm not sure how rsynch works, but I do know that the SSH server is limited to only have a certain number of unauthenticated SSH connections at one time. What is your "MaxStartups" set to in your...
Forum: AIX 12-13-2012
2,227
Posted By kah00na
The "Max" you are referring to is the maximum...
The "Max" you are referring to is the maximum amount of CPU the LPAR can be entitled to. Since your LPAR is uncapped, the maximum amount of CPU the LPAR can consume is the number of virtual...
Forum: AIX 12-03-2012
3,609
Posted By kah00na
I run into this "MISSING REQUISITES" garbage all...
I run into this "MISSING REQUISITES" garbage all the time. I resolve it by either opening a PMR with IBM and they end up uploading the base filesets I need to testcase.ibm.com or by going to the IBM...
Forum: AIX 12-03-2012
12,763
Posted By kah00na
Use "oslevel -qs" (q=query) to see all the...
Use "oslevel -qs" (q=query) to see all the oslevels your system knows about. Hopefully, the TL8 is at the top of your list.
hostname:/:$ oslevel -qs
Known Service Packs
-------------------...
Showing results 1 to 25 of 294

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