雅丶涵 发表于 2024-10-8 20:01:44

甲骨文的系统怎么启用不了root账号

根据搜索来的命令,明明执行完毕了,测试使用root登录,还是提示只能使用Ubuntu登录,不能使用root登录

genshin 发表于 2024-10-8 20:04:37

先登录 ,再su 或者 修改ssh_config

眼儿媚 发表于 2024-10-8 20:07:56

[*]#!/bin/bash
[*]echo root:xxxxxxxx|sudo chpasswd root
[*]sudo sed -i 's/^#\?PermitRootLogin.*/PermitRootLogin yes/g' /etc/ssh/sshd_config;
[*]sudo sed -i 's/^#\?PasswordAuthentication.*/PasswordAuthentication yes/g' /etc/ssh/sshd_config;
[*]sudo service sshd restart
[*]echo 'DNS=8.8.8.8 1.1.1.1 2001:4860:4860::8888 2001:4860:4860::8844'>> /etc/systemd/resolved.conf
[*]systemctl restart systemd-resolved
[*]systemctl enable systemd-resolved
[*]mv /etc/resolv.conf/etc/resolv.conf.bak
[*]ln -s /run/systemd/resolve/resolv.conf /etc/
[*]apt-get purge netfilter-persistent -y
[*]reboot复制代码

豪斯特 发表于 2024-10-8 21:06:39

我都是每次登录先sudo -i

当下 发表于 2024-10-8 21:09:47

好久没用了,但是系统都给你了,你想增加root用户也不是问题啊;
我的某些服务程序只有普通用户
页: [1]
查看完整版本: 甲骨文的系统怎么启用不了root账号