Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

关于安装、配置及管理IdP用户权限的说明:

...

Code Block
languagebash
borderStylesolid
[root@www ~]# hostnamectl set-hostname idp.xxx.xxx.xxx        

2.关闭SElinux

        考虑到SELinux 的复杂性,在测试及运行IdP的环境关闭了SElinux,如有学校需要打开SElinux功能,请自行进行测试及配置。

Code Block
languagebash
borderStylesolid
#关闭开机启动SELinux
[root@www ~]#setenforce 0

[root@www ~]# vi /etc/selinux/config
# line 7:修改如下。此修改重启系统后生效。如果SELINUX已经是disabled,则不用做任何修改。
SELINUX=disabled   

#查看当前selinux状态,disabled表示selinux已关闭
[root@www ~]# getenforce 
disabled

...

Code Block
[root@www ~]# rpm -qa|grep java

IdP4IdP5.31.1安装脚本会自动安装java2安装脚本会自动安装java-1117-openjdk-devel版本,如果已经安装了其它版本Java,建议删除。

6. 创建普通用户carsi为安装IdP做准备

Code Block
languagebash
borderStylesolid
[root@www ~]# useradd carsi

[root@www ~]# passwd carsi

Changing password for user carsi. New password: //输入carsi密码

Retype new password: //再次输入carsi密码

passwd: all authentication tokens updated successfully.

...