triadaeye.blogg.se

Navicat data modeler stored proc
Navicat data modeler stored proc










navicat data modeler stored proc
  1. NAVICAT DATA MODELER STORED PROC PORTABLE
  2. NAVICAT DATA MODELER STORED PROC PASSWORD
  3. NAVICAT DATA MODELER STORED PROC PLUS

(3) Use data volumes to persist data to the host docker run -d -e MYSQL_ROOT_PASSWORD =root -p 3306:3306 -name mysql01 -v /root/data:/var/lib/mysql -restart =always mysql5.6

(2) function mysql, First installation mysql Need a password docker run -d -e MYSQL_ROOT_PASSWORD =root -p 3306:3306 -name mysql01 -restart =always mysql5.6 (12) Package the container as a mirror docker commit -m "webapps" -a "swei" Containers id | Container name Mirror name : editionĭocker commit -m "webapps" -a "swei" e77 tomcatdemo:9.0ĭocker save Mirror name : Tag -o ( Mirror name -tag ).tarĭocker save tomcat:9.0 -o /root/tomcat-9.0.tarģ、. Use alias to keep the original contents of the container path, The path corresponding to the premise alias cannot contain content Is specified when setting the data volume ro, Indicates that the path in the container is read-onlyĭocker run -v a:/usr/local/tomcat/webapps tomcat:9.0Ī yes docker Alias in data volume When this alias is in docker in, Direct use, Otherwise, it is automatically created, The created path defaults to : /var/lib/docker/volumes The first time you start the container, you need to specifyĭocker run -v Host absolute path : Inner circuit of container :roĭocker run -d -name tmocat01 -v /root/apps:/usr/local/tomcat/webapps:ro tomcate:9.0 It is used to map the data in the container to the data in the host ( Sync )

navicat data modeler stored proc

(10) View the detailed instructions in the container docker inspect Containers id | Container name (9) See the running process in the container docker top Containers id | Container name Copy the files on the host to the container pathĭocker cp Host files and directories Containers id: Container target file path (8) File copy between container and host // Copy the files in the container to the host pathĭocker cp Containers id: Container file path Host destination directory (7) Enter the inside of the container docker exec -it ( Interactive mode ) Containers id | Container name bash exit // Exit the container (6) Check the internal log of the container docker logs Containers id | Container nameĭocker logs -f Containers id | Container name // Monitor the logs of services in the container in real time

navicat data modeler stored proc

(5) Delete container docker rm Mirror image id | Container name // Delete containers that have stoppedĭocker rm -f Mirror image id | Container name // Force deletion of containerĭocker rm -f $( docker ps -qa ) // Delete all containers (4) Kill the container docker kill Mirror image id | Container name (3) stop it restart Pause Restore the container docker stop Mirror image id | Container name // Stop containerĭocker start Mirror image id | Container name // Open the containerĭocker restart Containers id | Container name // Restart containerĭocker pause Containers id | Container name // Suspension of the containerĭocker unpause Containers id | Container name // Restore the container Background operation tomcat Mirror image -dĭocker run -d -p 8080 ( The host machine ):8080 tomcat9.0ĭocker run -d -p 8080 ( The host machine ):8080 -name tomcat80 tomcat9.0.

  • function tomcat Mirror image, Plus port number mapping -pĭocker run -p 8080 ( The host machine ):8080 tomcat9.0ĬONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMESĨe083a0543d2 tomcat:9.0 "catalina.sh run" 10 days ago Up 10 days 0.0.0.0:8080- > 8080/tcp, :::8080- > 8080/tcp tomcat80.
  • (2) Run a container docker run Mirror name | Mirror image id (1) see docker Which containers are running in the engine ? docker ps Containers are completely sandboxed using the sandbox mechanism, There will be no interface between them.

    What is? Docker?ĭocker Is an open source application container engine, Allows developers to package their applications and dependencies into a portable image, Then post to any popular Linux or Windows On the machine with the operating system, You can also implement virtualization. If you like the beautiful format, please move to my blog > Blog One.












    Navicat data modeler stored proc