UOS -- Your system is not activated. Please activate as soon as possible for normal use

远程UOS时总是显示Your system is not activated. Please activate as soon as possible for normal use提示。

解决方法:

systemctl |grep license //查询license.service是否启动

systemctl stop license.service //关闭license.service

systemctl disable license.service //关闭开机启动license.service

fanz@fanz-PC:~/WORK/0029project/test/src$ systemctl |grep license
  license.service            loaded active running   UOS License Activator
fanz@fanz-PC:~/WORK/0029project/test/src$ systemctl stop license.service
==== AUTHENTICATING FOR org.freedesktop.systemd1.manage-units ===
停止“license.service”需要认证。
Authenticating as: fanz
Info: Password
Password:
Info: Verification successful
==== AUTHENTICATION COMPLETE ===
fanz@fanz-PC:~/WORK/0029project/test/src$ systemctl |grep license
fanz@fanz-PC:~/WORK/0029project/test/src$ systemctl disable license.service
==== AUTHENTICATING FOR org.freedesktop.systemd1.manage-unit-files ===
管理系统服务或单元文件需要认证。
Authenticating as: fanz
Info: Password
Password:
Info: Verification successful
==== AUTHENTICATION COMPLETE ===

你可能感兴趣的:(服务器,linux,运维)