Questions tagged «apparmor»

1
apparmor:多个应用程序使用相同的配置文件
所以我有: #include <tunables/global> /usr/bin/python2.7 { /** mixrw, deny /** lwk, } /usr/lib/jvm/java-6-openjdk/jre/bin/java { /** mixrw, deny /** lwk, } /var/www/service/usercode/*/a.out { /** mixrw, #deny /** lwk, } 我该如何做这样的事情: #include <tunables/global> /usr/bin/python2.7 /usr/lib/jvm/java-6-openjdk/jre/bin/java /var/www/service/usercode/*/a.out { /** mixrw, deny /** lwk, }
12 ubuntu  apparmor 

1
mysql init-file config选项给文件找不到错误
我想在每当mysql启动时运行一个SQL脚本,但是我无法在Ubuntu 11.10中运行它。 我在mysql配置文件中添加了“ init-file ”选项: > sudo emacs -nw /etc/mysql/my.cnf ... [mysqld] init-file=/etc/mysql/mysqlinit.sql ... 但是,当我重新启动mysql时,它失败并显示“ 找不到文件 ”错误: > tail /var/log/mysql/error.log 111111 7:41:06 [ERROR] /usr/sbin/mysqld: File '/etc/mysql/mysqlinit.sql' not found (Errcode: 13) 111111 7:41:06 [ERROR] Aborting 但是该文件确实存在并且可读: > ls -l /etc/mysql/mysqlinit.sql -rwxr-xr-x 1 mysql mysql 30 2011-11-09 05:06 /etc/mysql/mysqlinit.sql 任何想法如何解决这个问题?这是Ubuntu的怪异现象还是我做了些愚蠢的事情? 信息: 我正在运行Ubuntu …
11 ubuntu  mysql  apparmor 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.