【学习随手记】POSIX消息队列执行报Permission denied的问题。

本文详细介绍了在UNIX环境下使用POSIX消息队列时遇到的Permission denied错误,并通过`mq_overview`了解了消息队列文件系统的创建和管理过程。文章提供了创建消息队列的代码示例,并最终通过正确执行`mount`命令解决了权限问题。
摘要由CSDN通过智能技术生成

最近学习UNIX环境网络编程POSIX消息队列的时候发现一个问题,在mq_open的时候总会报Permission denied的错误。

查看mq_overview后才得以解决。

mq_overview原文描述如下:

Mounting the message queue file system
       On Linux, message queues are created in a virtual file system.   (Other
       implementations  may  also  provide such a feature, but the details are
       likely to differ.)  This file system can be mounted (by the  superuser)
       using the following commands:

           # mkdir /dev/mqueue
           # mount -t mqueue none /dev/mqueue

       The sticky bit is automatically enabled on the mount directory.

       After  the file system has been mounted, the message queues on the sys‐
       tem can be viewed and manipulated using the commands usually  used  for
       files (e.g., ls(1) and rm(1)).

创建MQ的代码如下:

 1 #include <unpipc.h>
 2 
 3 int
 4 main(int argc, char **argv)
 5 {
 6     int c, flags;
 7     mqd_t mqd;
 8 
 9     flags = O_RDWR | O_CREAT;
10 
11     while ((c = Getopt(argc, argv, "e")) != -1)
12     {
13         switch (c) 
14         {
15         case 'e':
16             flags |= O_EXCL;
17             break;
18         }
19     }
20 
21     if (optind != argc - 1)
22         err_quit("usage: mqcreate [-e] <name>");
23 
24     mqd = Mq_open(argv[optind], flags, 0777, NULL);
25     Mq_close(mqd);
26 
27     exit(0);
28 }

 

转载于:https://www.cnblogs.com/zhiqli/p/3487638.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值