Questions tagged «centos»

社区企业操作系统;一种基于Red Hat Enterprise Linux的Linux发行版,广泛用于Web服务器。

1
Centos最亲近的堂兄?
我正在迁移到新的服务器空间。服务器操作系统是Centos我想安装一个stats软件工具rstudio Rstudio为linux提供了两种选择: RStudio 1.0.153 - Ubuntu 12.04-15.10 / Debian 8(64位)92.7 MB 2017-07-20 RStudio 1.0.153 - Fedora 19 + / RedHat 7 + / openSUSE 13.1+(64位) 我应该选择哪个Centos安装?(祈祷答案不是“既不”)

1
CentOS7用户不继承组权限
我一直在https://www.digitalocean.com/community/tutorials/how-to-install-wordpress-on-centos-7上阅读该教程(以及所有的先决条件教程),在我的新CentOS7上设置wordpress服务器。到目前为止,一切都很好 sudo chown -R apache:apache /var/www/html/* 我知道上面的命令将所有权分配给apache用户和组。但是,通常情况下,我使用自己的myuser帐户通过putty和Filezilla连接,并希望为该帐户启用权限。 所以除了上面的命令,我还添加myuser到apache组并注销并重新登录,但是当我尝试在html文件夹中执行CRUD操作时,仍然会收到权限被拒绝的错误消息。但是,如果我使用sudo它们来提升命令,那么我对如何允许myuser帐户执行文件操作感到有些困惑。有任何想法吗?

1
存储到变量sudo结果
我有这个简单的脚本 #!/bin/sh ISUP=`sudo /etc/init.d/jboss7 status | grep running` echo "ISUP: " $ISUP 如果我手动运行它可以正常工作 [jboss@suc072-ipos ~]$ sh a.sh ISUP: JBoss AS 7.1.1 is running (pid 29125) 但如果我用crontab运行它,变量是空的:O :( * * * * * /home/jboss/a.sh > /home/jboss/a.log [jboss@suc072-ipos ~]$ cat a.log ISUP: 任何想法如何解决这个问题? linux centos [jboss@suc072-ipos ~]$ cat /etc/redhat-release CentOS release 6.7 …

1
使用SSH密钥进行身份验证,并在CentOS 7上通过密码和身份验证
我看到可以使用SSH密钥(带密码)和密码进行身份验证:https://security.stackexchange.com/questions/17931/possible-to-use-both-private-key-and-password -authentication-for-ssh-login 我有一个CentOS 7远程VPS和一个Windows本地机器。 我在我的Windows机器上用PuTTYgen 创建了一个public和privatekey(SSH-2 RSA, 2048 bits with passphrase)。 在CentOS上~/.ssh/authorized_keys,当我是root用户时,我添加了可粘贴的公钥。我还更改了文件夹的权限,包括: sudo chmod g-w ~/ && sudo chmod 755 ~/.ssh && sudo chmod 600 ~/.ssh/authorized_keys 然后我改为/etc/ssh/sshd_config: Protocol 2 PermitRootLogin yes RSAAuthentication yes PubkeyAuthentication yes PasswordAuthentication yes AuthorizedKeysFile %h/.ssh/authorized_keys AuthenticationMethods "publickey,password" 然后我重新启动了SSH服务器sudo systemctl restart sshd.service。我没有在这台Windows本地机器上关闭Putty。 我想检查其他Windows机器是否有效。我将私有ppk文件添加到Pageant,并将其指向Putty中的该文件。但是当我尝试打开连接时,Putty会给出以下错误消息: "disconnected no supported authentication …

0
Linux提前一小时(CentOS)
我使用CentOS,出于某种原因,我买的一台服务器(在我不拥有的其他服务器网络中)已经关闭了一个小时。无论我将它设置为什么时区,时间都提前一小时。 [root@adventurelobbies5 ~]# mv /etc/localtime /etc/localtime.bak [root@adventurelobbies5 ~]# ln -s /usr/share/zoneinfo/America/New_York /etc/localtime [root@adventurelobbies5 ~]# date Mon May 14 18:24:23 EDT 2012 现在,它实际上是 Mon May 14 17:24:23 EDT 2012 有任何想法吗?我听说过设置硬件时钟的事情了吗?我不确定我是否可以访问它,因为这是一个VPS。

0
CentOS Server网络是可访问的,但终端没有响应
我运行一个CentOS7x86服务器。 以下问题经常发生,但我不知道在哪里看。 运行服务器 运行一些docker容器(Jenkins,gitlab...) 它看起来很好,但几天后,无法访问 ssh 在这种情况下3,ping服务器看起来很好但无法访问ssh 同样在服务器设备中,第一个终端看起来很好(等待用户输入。)但是只要我把它放到任何命令,就会挂起。(例如,我试过了firewall-cmd --list-port) 我top之前使用时,它有足够的内存 我该如何解决这个问题? 我可以假设它只是网络问题,因为我可以访问ping吗? 是否可能只有端口22被阻止? 我需要任何建议如何开始这种问题。谢谢。 ==================编辑======================== sar 命令报告如下 [ice@ice ~]$ sar Linux 3.10.0-123.el7.x86_64 (DCSF-DEV08) 08/03/2017 _x86_64_ (24 CPU) 12:00:01 AM CPU %user %nice %system %iowait %steal %idle 12:10:01 AM all 2.74 0.00 1.62 0.02 0.00 95.62 12:20:01 AM all 2.74 0.00 …

2
在没有root权限的情况下在CentOS上安装devtools
我想在运行CentOS 5.4的集群上安装devtools(获取比默认版本更高版本的gcc。我需要gcc> 4.7才能使用某些C ++ 11功能) 但是我没有root权限。是否可以在我的用户主文件夹中安装devtools,而无需root访问权限?本回答中给出的步骤假定root访问权限可用。感谢您的任何信息或链接。
centos  root  yum 

1
无法使用CentOs中的一个适配器访问localhost和Internet
我有下面的开发。环境。 硬件: - Windows 7,32位,惠普笔记本电脑。 软件: - 在VirtualBox 4.3.10上运行的CentOs 6.5。 简而言之问题是我无法在VirtualBox中同时访问Internet和localhost。例: 主持人只适应 如果我将VirtualBox适配器设置为仅主机。ifconfig eth0向我展示以下配置: #ifconfig eth0 Link encap:Ethernet HWaddr 08:00:27:81:0F:EA inet addr:192.168.57.162 Bcast:192.168.56.255 Mask:255.255.255.0 inet6 addr: fe80::a00:27ff:fe81:fea/64 Scope:Link UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:342 errors:0 dropped:0 overruns:0 frame:0 TX packets:362 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes:37176 …


1
从win7连接到VirtualBox / CentOS / MySQL
我在Win7中运行VirtualBox 4.2.16。我在CentOS 6.4中有MySQL服务器。从Win7到CentOS的Telnet都没问题。 mysql -u root -h 192.168.56.102 p 在CentOS很好。 这是我在用户表中的内容: mysql> select user, host from user; +------+----------------+ | user | host | +------+----------------+ | mm | 127.0.0.1 | | root | 127.0.0.1 | | mm | 192.168.56.102 | | root | 192.168.56.102 | | mm | localhost | | …

1
如何禁用XAMPP / Apache以及ServerSignature返回服务器IP地址?
我正在尝试使用XAMPP在CentOS 6.4上配置网络服务器。 我面临的唯一问题是我似乎没有找到一种方法来禁止服务器返回服务器IP地址以及ServerSignature。 我所看到的是以下内容: 我已经在线跟踪了各种服务器强化资源,并设法禁用ServerSignature,在编辑httpd.conf后更改网站管理员电子邮件地址 但是我找不到任何关于禁止XAMPP返回服务器IP地址的资源。我尝试在ServerName前输入虚拟IP或将其注释掉。 如果有人可以帮助我,那会很棒。

0
改变xguest配置
我想在Centos 7中使用xguest提供一个安全的实验室界面,防止篡改,恶意或其他。 我遇到的问题是如何更改分辨率并将启动脚本添加到xguest帐户。在重新启动时,帐户内部所做的任何更改都会丢失,我不知道如何操作和保存屏幕分辨率或添加脚本以在启动时运行。 我需要做什么?

2
YUM更新错误
我有一台带有CentOS 6的虚拟机。我试过运行yum update,但是我收到了这个错误: http://mirror.centos.org/centos/6/addons/x86_64/repodata/repomd.xml: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404" Trying other mirror. Error: Cannot retrieve repository metadata (repomd.xml) for repository: addons. Please verify its path and try again 我怎样才能解决这个问题。有没有办法重新安装Yum以恢复其设置?

1
Fail2ban无法在Centos 7上启动。缺少/ var / log / secure文件
几天前我买了vps并安装了Centos 7。现在我正在尝试为ssh设置fail2ban。我安装了epel-release。Iptables默认使用。当我尝试启动fail2ban时,这就是我得到的: Job for fail2ban.service failed because the control process exited with error code. See "systemctl status fail2ban.service" and "journalctl -xe" for details. fail2ban启动的调试: [root@server ~]# /usr/bin/fail2ban-client -v -v start INFO Loading configs for fail2ban under /etc/fail2ban DEBUG Reading configs for fail2ban under /etc/fail2ban DEBUG Reading config files: /etc/fail2ban/fail2ban.conf INFO …

1
Centos 6.7启动挂在进度条上,但ssh很好
我刚刚将我的内核升级为: 2.6.32-642.6.2.el6.x86_64 #1 SMP Wed Oct 26 06:52:09 UTC 2016 在我的 CentOS release 6.7 (Final) 并重新启动我的系统(Dell R820)。引导进度条完成但不会丢弃到终端。我无法到达任何本地终端 ctrl-alt-f1 ctrl-alt-fn 但是一切似乎都很好!我可以ssh,我的所有文件系统都正确安装(ext4,xfs,cifs),我的所有数据似乎都很好,日志中没有任何问题。那么我的本地终端在哪里?重新启动是非常具有破坏性的,因为它是一个多用户系统,我已经告诉他们可以在重启后登录。关于如何让本地终端重启的任何建议都非常赞赏。 谢谢 小号

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.