安装国产化数据库OceanBase的时候,需要创建用户,并在/etc/.sudoers文件中赋予用户root权限
W10: Warning: Changing a readonly file E325: ATTENTION Found a swap file by the name "/etc/.sudoers.swp" owned by: root dated: Wed Jul 31 14:22:16 2024 file name: /etc/sudoers modified: YES user name: root host name: linux130 process ID: 4753 While opening file "/etc/sudoers" dated: Wed Sep 30 21:18:59 2020 (1) Another program may be editing the same file. If this is the case, be careful not to end up with two different instances of the same file when making changes. Quit, or continue with caution. (2) An edit session for this file crashed. If this is the case, use ":recover" or "vim -r /etc/sudoers" to recover the changes (see ":help recovery"). If you did this already, delete the swap file "/etc/.sudoers.swp" to avoid this message.
[root@hurys22 ~]# vim -r /etc/sudoers
[root@hurys22 ~]# sudo rm /etc/.sudoers.swm
注意:/etc/.sudoers.swm进程名不一定一样,而且可能会有多个
[root@hurys23 sbin]# sudo visudo
## Allow root to run any commands anywhere
root ALL=(ALL) ALL
gpadmin ALL=(ALL) ALL
oceanadmin ALL=(ALL) ALL
修改好:wq保存并退出,就完成了!