Questions tagged «rhel»

15
您如何在Linux控制台上向上/向下滚动?
我知道Up/ Down将为您提供命令历史记录。但是,您如何通过上下滚动查看过去的输出? 我曾经用过Shift+ Page Up/ Page Down,Alt+ Shift+ Up/ Down和Page Up/,Page Down但是这些似乎都不起作用。 这是一个Redhat Linux盒子。
199 linux  terminal  rhel 

8
如何将Systemd服务的输出重定向到文件
我正在尝试将systemd服务的输出重定向到文件,但它似乎不起作用: [Unit] Description=customprocess After=network.target [Service] Type=forking ExecStart=/usr/local/bin/binary1 agent -config-dir /etc/sample.d/server StandardOutput=/var/log1.log StandardError=/var/log2.log Restart=always [Install] WantedBy=multi-user.target 请更正我的方法。
171 linux  centos7  systemd  rhel  rhel7 

8
以其他用户身份运行Linux服务的最佳实践
服务默认为root在启动时在我的RHEL盒上启动。如果我没记错的话,其他使用init中的init脚本的Linux发行版也是如此/etc/init.d。 您认为让流程以我选择的(静态)用户身份运行的最佳方法是什么? 我到达的唯一方法是使用类似以下内容的方法: su my_user -c 'daemon my_cmd &>/dev/null &' 但这似乎有点不整洁... 是否有一些魔术可以提供一种简单的机制来像其他非root用户一样自动启动服务? 编辑:我应该说,我在此实例中启动的进程是Python脚本或Java程序。我不想在它们周围编写本机包装,所以不幸的是,我无法按照Black的建议调用setuid()。
141 linux  sysadmin  rhel  init.d 

18
在RHEL上安装Python 3
我正在尝试使用以下步骤在RHEL上安装python3: yum search python3 哪个回来了 No matches found for: python3 其次是: yum search python 搜索结果均未包含python3。接下来我应该尝试什么?
128 python  python-3.x  rhel 

18
RHEL上的Docker CE-要求:container-selinux> = 2.9
我试图安装Docker CE在RHEL使用这个链接。这是我的RHEL版本: Red Hat Enterprise Linux Server release 7.3 (Maipo) 当我执行此操作时: sudo yum -y install docker-ce 我收到此错误: Error: Package: docker-ce-17.06.0.ce-1.el7.centos.x86_64 (docker-ce-stable) Requires: container-selinux >= 2.9 You could try using --skip-broken to work around the problem You could try running: rpm -Va --nofiles --nodigest 我尝试使用--skip-broken,rpm -Va --nofiles --nodigest但再次遇到相同的错误。请让我知道如何解决此问题并在RHEL 7.3中安装Docker CE。
84 docker  unix  rhel 

2
PHP是否会对php.ini文件进行任何解析?
在RHEL 7.7下运行PHP版本7.1.30。 我想提高memory_limit,但不确定我是否具有正确的语法(即256M或256MB)。因此,我首先在memory_limit设置中输入了一个错误的值“ Hugo”。麻烦的是phpinfo()(在httpd下运行)的结果,字面上有字符串“ Hugo”,即: 因此,这让我有些担心,PHP实际上并未对值进行任何合理性检查。(如果提供的值不正确,我希望它恢复为默认值,例如) 任何人都可以对此发表评论-特别是,您如何知道PHP是否将强制执行操作(如果可以提供任意字符串)。
24 php  apache  rhel 
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.