在 CentOS 6.6(虚拟机)中使用 semanage 但它显示“Killed”
Using semanage in CentOS 6.6 (Virtual Machine) but it shows “Killed”
我有一台 CentOS 6.6 虚拟机(在 Eucalyptus 私有云中启动)。我猜亚马逊实例也可能有这个问题(https://www.centos.org/forums/viewtopic.php?f=51&t=51976)。我正在尝试将端口 250 添加到 ssh 并将端口 12345 添加到 http_port_t。但我收到以下错误:
[root@ip-172-16-1-163 ~]# semanage port -a -t http_port_t -p tcp 12345
Killed
[root@ip-172-16-1-163 ~]# semanage port -a -t ssh_port_t -p tcp 250
Killed
selinux 在虚拟机中是宽松的。
输出很不正常。我想知道是什么原因造成的以及如何调试错误?
更新:
刚刚发现这是因为内存不足。虚拟机会杀最长-运行命令(https://serverfault.com/questions/268288/most-long-running-commands-instantly-killed-on-amazon-ec2-ubuntu-10-04):
内存不足:终止进程 16315(管理)得分 649 或牺牲子进程
终止进程 16315,UID 0,(管理)total-vm:347604kB, anon-rss:165468kB, file-rss:4kB
更新:
刚刚发现这是因为内存不足。虚拟机会kill最长-运行命令(https://serverfault.com/questions/268288/most-long-running-commands-instantly-killed-on-amazon-ec2-ubuntu-10-04):
使用dmesg命令可以追踪杀死进程的原因:
Out of memory: Kill process 16315 (semanage) score 649 or sacrifice child Killed
process 16315, UID 0, (semanage) total-vm:347604kB, anon-rss:165468kB, file-rss:4kB
再次更新:
我用了t1.micro作为实例类型,它没有多少内存。所以管理失败了。现在我改为使用大内存类型,现在可以使用了。
我有一台 CentOS 6.6 虚拟机(在 Eucalyptus 私有云中启动)。我猜亚马逊实例也可能有这个问题(https://www.centos.org/forums/viewtopic.php?f=51&t=51976)。我正在尝试将端口 250 添加到 ssh 并将端口 12345 添加到 http_port_t。但我收到以下错误:
[root@ip-172-16-1-163 ~]# semanage port -a -t http_port_t -p tcp 12345
Killed
[root@ip-172-16-1-163 ~]# semanage port -a -t ssh_port_t -p tcp 250
Killed
selinux 在虚拟机中是宽松的。
输出很不正常。我想知道是什么原因造成的以及如何调试错误?
更新:
刚刚发现这是因为内存不足。虚拟机会杀最长-运行命令(https://serverfault.com/questions/268288/most-long-running-commands-instantly-killed-on-amazon-ec2-ubuntu-10-04):
内存不足:终止进程 16315(管理)得分 649 或牺牲子进程 终止进程 16315,UID 0,(管理)total-vm:347604kB, anon-rss:165468kB, file-rss:4kB
更新:
刚刚发现这是因为内存不足。虚拟机会kill最长-运行命令(https://serverfault.com/questions/268288/most-long-running-commands-instantly-killed-on-amazon-ec2-ubuntu-10-04):
使用dmesg命令可以追踪杀死进程的原因:
Out of memory: Kill process 16315 (semanage) score 649 or sacrifice child Killed
process 16315, UID 0, (semanage) total-vm:347604kB, anon-rss:165468kB, file-rss:4kB
再次更新:
我用了t1.micro作为实例类型,它没有多少内存。所以管理失败了。现在我改为使用大内存类型,现在可以使用了。