ok I did the
Code:
fixfiles onboot
reboot
\
which successfully went through and did it's thing. then I tried the
Code:
mkdir myccs
cd myccs
echo "policy_module(myccs. 1.0.0)" > myccs.te;
echo "require { type ccs_t; }" >> myccs.te;
echo "aisexec_domtrans(ccs_t)" >> myccs.te;
make -f /usr/share/selinux/devel/Makefile myccs.pp
sudo semodule -i myccs.pp
I made it in the /root directory while logged in as root and this output: after the "make -f" line
Code:
[root@server1 myccs]# make -f /usr/share/selinux/devel/Makefile myccs.pp
Compiling targeted myccs module
/usr/bin/checkmodule: loading policy configuration from tmp/myccs.tmp
myccs.te":1:ERROR 'syntax error' at token '.' on line 1007:
#line 1
module myccs. 1.0.0 ;
/usr/bin/checkmodule: error(s) encountered while parsing configuration
make: *** [tmp/myccs.mod] Error 1
[root@server1 myccs]#
and here is what is in the /root/myccs/myccs.te
Code:
policy_module(myccs. 1.0.0)
require { type ccs_t; }
aisexec_domtrans(ccs_t)
I am sorry for any inexperience that I have. I have not worked with the clustering at all before and used this pdf >
http://www.clusterlabs.org/wiki/File
lusters_from_Scratch_-_Apache_on_Fedora11.pdf to try and walk my way through it. I am currently on page 26. I have not enabled the ssh without password and i have not disabled selinux, of course. These servers are being setup now to be in a remote location.
I then looked into cman which someone as a question about and realized I had not even touched it yet! I tried starting the cman and here is what happens:
Code:
[root@server1 init.d]# service cman restart
Stopping cluster:
Leaving fence domain... [ OK ]
Stopping gfs_controld... [ OK ]
Stopping dlm_controld... [ OK ]
Stopping fenced... [ OK ]
Stopping cman... [ OK ]
Unloading kernel modules... [ OK ]
Unmounting configfs... [ OK ]
Starting cluster:
Checking Network Manager...
Network Manager is either running or configured to run. Please disable it in the cluster.
[FAILED]
[root@server1 init.d]#
Once again I am sorry for inexperience and sorry if some of this does not relate to the security section of Fedora Forum. I am just trying to explain what I am doing and where I am at. Hopefully this helps for any questions. This is at my job i am setting this up and it will be a http and ftp server for them and the "windows" guys convinced them they needed two servers and clustering.
ok i got corosync up and tried but disabled the network manager so i can get online on that machine. and now i am messing with cman setup for a little
Thanks for all the help so far and thanks to anyone who continues to do so.