早上好。
我租了 3 台物理服务器,上面安装了 KVM 和 Virt-Manager。
但是对于我来说,必须通过 VNC 访问 3 台服务器中的每台服务器以查看一切进展情况并对其进行管理,这并不是很实际。
有没有办法集中控制3个KVM?
你能给我什么建议?
问候和感谢
早上好。
我租了 3 台物理服务器,上面安装了 KVM 和 Virt-Manager。
但是对于我来说,必须通过 VNC 访问 3 台服务器中的每台服务器以查看一切进展情况并对其进行管理,这并不是很实际。
有没有办法集中控制3个KVM?
你能给我什么建议?
问候和感谢
我已将您设置为每天轮换,但您没有。
但是当我手动执行时,它确实有效。
logrotate -vf /etc/logrotate.conf
这是我要轮换的日志文件。/mylogs/log (-rwxrwxrwxrwx 1 admin 管理员)
这是系统配置。
/etc/logrotate.conf (-rw-r--r-- 1 root root)
:
/mylogs/log {
create 0640 root utmp
missingok
daily
copytruncate
rotate 10
dateext
}
/etc/logrotate.d/syslog (-rw-r--r-- 1 root root)
:
/var/log/cron
/var/log/maillog
/var/log/messages
/var/log/secure
/var/log/spooler
{
missingok
sharedscripts
postrotate
/bin/kill -HUP `cat /var/run/syslogd.pid 2> /dev/null` 2> /dev/null ||
true
endscript
}
/etc/cron.daily/logrotate (-rwx------ 1 root root)
:
#!/bin/sh
/usr/sbin/logrotate -s /var/lib/logrotate/logrotate.status /etc/logrotate.conf
EXITVALUE=$?
if [ $EXITVALUE != 0 ]; then
/usr/bin/logger -t logrotate "ALERT exited abnormally with
[$EXITVALUE]"
fi
exit 0
/etc/crontab (-rw-r--r--. 1 root root)
:
SHELL=/bin/bash
PATH=/sbin:/bin:/usr/sbin:/usr/bin
MAILTO=root
# For details see man 4 crontabs
# Example of job definition:
# .---------------- minute (0 - 59)
# | .------------- hour (0 - 23)
# | | .---------- day of month (1 - 31)
# | | | .------- month (1 - 12) OR jan,feb,mar,apr ...
# | | | | .---- day of week (0 - 6) (Sunday=0 or 7) OR
sun,mon,tue,wed,thu,fri,sat
# | | | | |
# * * * * * user-name command to be executed
附加信息。CentOS 操作系统
我怎样才能让它正确旋转。
我认为问题在于分配 3 件事的所有者、组和权限。/mylogs/ 文件夹 (root root) /mylogs/log 文件 (admin admin)
logrotate.conf 的创建选项 (create 0640 root utmp)
logrotate 运行正常的人。请让我知道您如何分配前 3 个值。文件夹 - 文件 - logrotate.conf 中的创建配置