Difference between revisions of "ESXi, CentOS, Ubuntu, Docker"
		
		
		
		
		
		Jump to navigation
		Jump to search
		
				
		
		
	
| Line 1: | Line 1: | ||
== Useful Commands==  | == Useful Commands==  | ||
| + |  adduser rhouser  | ||
| + |     passwd rhouser  | ||
| + |     usermod -aG wheel rhouser  | ||
| + |    su - rhouser  | ||
| + | |||
  chkconfig --add httpd  |   chkconfig --add httpd  | ||
  chkconfig httpd on  |   chkconfig httpd on  | ||
Revision as of 12:46, 24 July 2021
Useful Commands
adduser rhouser passwd rhouser usermod -aG wheel rhouser su - rhouser
chkconfig --add httpd chkconfig httpd on
chkconfig httpd off chkconfig --del httpd
yum -y install which openssh openssh-server openssh-clients openssl-libs nano rsync unzip net-tools NetworkManager-tui sysstat perl-core libaio nmap-ncat libstdc++.so.6 wget tar
yum install epel-release dnf --enablerepo=epel -y install sshpass
Docker Commands
docker ps
docker inspect -f  "{{ .Config.Env }}" <container_id> 
docker commit --change "ENV DEBUG=true" <container_id> rhomicom/testimage:v1.0
docker inspect -f "{{ .Config.Env }}" <container_id>
docker push rhomicom/testimage:v1.0