You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							10 lines
						
					
					
						
							303 B
						
					
					
				
			
		
		
	
	
							10 lines
						
					
					
						
							303 B
						
					
					
				| #!/bin/bash
 | |
| 
 | |
| dnf -y install centos-release-gluster8
 | |
| sed -i -e "s/enabled=1/enabled=0/g" /etc/yum.repos.d/CentOS-Gluster-8.repo
 | |
| dnf --enablerepo=centos-gluster8,powertools -y install glusterfs-server
 | |
| systemctl enable --now glusterd
 | |
| 
 | |
| firewall-cmd --add-service=glusterfs --permanent
 | |
| firewall-cmd --reload
 |