- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- HOw to verify is the I/O Async is on ?
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2007 04:37 AM
04-18-2007 04:37 AM
I want to configure I/O Async for Sybase database.
How to vreify if the async_disk driver (Asynchronous Disk Pseudo Driver)is to IN
in the HP-UX Kernel,and know if i have to generating a new kernel ?
Thanks for your help.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2007 04:49 AM
04-18-2007 04:49 AM
Re: HOw to verify is the I/O Async is on ?
The following should do give the process
Verify following drivers are in kernel
async-io
fs_async
Verify the device file /dev/async exists
If it does not exist, create it.
mknod /dev/async c 101 0x000000
chown bin:bin /dev/async
chmod 555 /dev/async
Verify the file /etc/privgroup exists
If it does not, create it.
touch /etc/privgroup
chown root:sys /etc/privgroup
chmod 444 /etc/privgroup
Modify /etc/privgroup with the following entry:
sybase RTPRIO MLOCK CHOWN.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2007 06:56 AM
04-18-2007 06:56 AM
Solution# lsmod | grep -i async
Using the above command, you can find out if the async_disk driver is included in the kernel.
If not, you will have to create a system file and include the drive, regenerate the kernel and reboot.
Sundar.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2007 07:27 AM
04-18-2007 07:27 AM
Re: HOw to verify is the I/O Async is on ?
check :
# lsdev | grep -i async
# ls -l /dev | grep async
(Also check the minor number and permission)
Cheers,
Raj.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2007 07:28 AM
04-18-2007 07:28 AM
Re: HOw to verify is the I/O Async is on ?
Another thing, you might want to specify the OS that you are running, as 11.23 have the support build in by default.
Regards,
Jaime.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2007 04:07 PM
04-18-2007 04:07 PM