ps: 실험 환경은 ubuntu 14.04, 64비트
1입니다. mysql 이미지 가져오기
docker 허브 창고에서 mysql 이미지 가져오기
sudo docker pull mysql
sudo docker pull mysql
查看镜像
sudo docker images mysql latest 18f13d72f7f0 2 weeks ago 383.4 mb
2.运行一个mysql容器
运行一个mysql实例的命令如下:
复制代码 代码如下:
sudo docker run --name first-mysql -p 3306:3306 -e mysql_root_password=123456 -d mysql
5b6bf6f629bfe46b4c8786b555d8db1947680138b2de1f268f310a15ced7247a
上述命令各个参数含义:
run 运行一个容器
--name 后面是这个镜像的名称
-p 3306:3306 表示在这个容器中使用3306端口(第二个)映射到本机的端口号也为3306(第一个)
-d 表示使用守护进程运行,即服务挂在后台
查看当前运行的容器状态:
复制代码 代码如下:
sudo docker ps
container id image command created status ports names5b6bf6f629bf
mysql "docker-entrypoint.sh" 32 hours ago up 5 hours 0.0.0.0:3306->3306/tcp first-mysql
想要访问mysql数据库,我的机器上需要装一个mysql-client。
sudo apt-get install mysql-client-core-5.6<br>
下面我们使用mysql命令访问服务器,密码如刚才所示为123456,192.168.95.4为我这台机器的ip, 3306为刚才所示的占用本物理机的端口(不是在docker内部的端口)
mysql -h192.168.95.4 -p3306 -uroot -p123456
mysql> show databases; +--------------------+ | database | +--------------------+ | information_schema | | mysql | | performance_schema | | sys | +--------------------+ 4 rows in set (0.00 sec)
2. mysql 컨테이너 실행
위 명령의 각 매개변수의 의미:
run 컨테이너 실행
--이름 뒤에 이미지 이름이 옵니다.-p 3306:3306은 이 컨테이너에서 포트 3306을 사용한다는 의미입니다(두 번째). 로컬 시스템에 매핑된 포트 번호도 3306입니다(첫 번째).
-d는 데몬 프로세스를 사용하여 실행 중임을 의미합니다. 즉, 서비스가 background현재 실행 중인 컨테이너의 상태 보기:
sudo apt-get install mysql-client-core-5.6
mysql -h192.168.95.4 -p3306 -uroot -p123456
액세스 결과는 다음과 같습니다.
sudo docker ps -a container id image command created status ports names 2de4ddb5bfb9 mysql "docker-entrypoint.sh" about a minute ago created second-mysql 5b6bf6f629bf mysql "docker-entrypoint.sh" 34 minutes ago up 34 minutes 0.0.0.0:3306->3306/tcp first-mysql3. 두 번째 mysql 인스턴스 실행 도커를 사용하는 이유는 가상머신에 비해 리소스 소모가 매우 적고 격리된 리소스를 많이 "열 수" 있기 때문입니다. 환경이므로 두 번째 mysql 인스턴스를 계속 실행합니다. 두 mysql 인스턴스는 여전히 이전 이미지를 사용하며 이름은 second-mysql입니다. 코드를 복사하세요. 코드는 다음과 같습니다.
sudo docker run --name second-mysql -p 3306:3307 -e mysql_root_password=123456 -d
mysql2de4ddb5bfb9b9434af8e72368631e7f4c3f83ee3541573 2 8049d7d0
첫 번째 포트가 이 시스템의 포트 번호인지 확인하기 위해 포트 3306이 계속 사용됩니다. , 그러면 위와 같이 생성하면 오류가 발생했지만 컨테이너 ID가 생성되었습니다. 포트를 수정하면 이름 충돌로 인해 오류가 보고됩니다. 즉, 실패한 생성이 다음 이름을 차지하게 됩니다.
코드 복사
sudo docker run --name second -mysql -p 3307:3306 -e mysql_root_password=123456 -d
maintain@maintain-dev1:~$ sudo docker rm second-mysql maintain@maintain-dev1:~$ sudo docker ps -a container id image command created status ports names 5b6bf6f629bf mysql "docker-entrypoint.sh" 42 minutes ago up 42 minutes 0.0.0.0:3306->3306/tcp first-mysql다음 명령에 표시된 대로 rm 명령을 사용하여 이 컨테이너를 삭제합니다. 🎜
sudo docker run --name second-mysql -p 3307:3306 -e mysql\_root\_password=123456 -d mysql 5404fb11f29cba07b991f34056d6b40ed0888aa905a45e637e396d071bd7f331 sudo docker ps container id image command created status ports names 5404fb11f29c mysql "docker-entrypoint.sh" 12 seconds ago up 11 seconds 0.0.0.0:3307->3306/tcp second-mysql 5b6bf6f629bf mysql "docker-entrypoint.sh" 43 minutes ago up 43 minutes 0.0.0.0:3306->3306/tcp first-mysql🎜두 번째 mysql 컨테이너를 다시 설정하여 물리적 시스템의 3307 포트를 차지합니다. 🎜
mysql -h192.168.95.4 -p3307 -uroot -p123456 warning: using a password on the command line interface can be insecure. welcome to the mysql monitor. commands end with ; or \g. your mysql connection id is 2 server version: 5.7.15 mysql community server (gpl) copyright (c) 2000, 2016, oracle and/or its affiliates. all rights reserved. oracle is a registered trademark of oracle corporation and/or itsaffiliates. other names may be trademarks of their respectiveowners. type 'help;' or '\h' for help. type '\c' to clear the current input statement.🎜위 그림에 표시된 대로 , 두 인스턴스 모두 정상적으로 실행 중입니다. 두 번째 컨테이너에 액세스하기 위해 포트 3307을 지정하여 mysql 클라이언트에 로그인합니다. 🎜
### application.yaml ### mysql config spring: datasource: dbcp: driver-class-name: com.mysql.jdbc.driver url: jdbc:mysql://192.168.18.129:3306/test1 username: root password: 123456🎜🎜4.jdbc 테스트(maven & spring boot)🎜🎜🎜🎜예제 소스:🎜🎜java spring을 사용하여 데이터베이스 운영, spring 공식 웹 사이트의 예제 사용, 베어 SQL 메소드인 jdbctemplate 사용, 사용하지 않고 hibernate 또는 myibatis.🎜🎜Spring 공식 홈페이지의 예제에서는 구성 파일을 객체로 생성하는 수고 없이 내장 메모리 데이터베이스인 h2를 사용합니다. 🎜🎜xml 대신 yaml을 연습하기 위해 다음과 같은 mysql jdbc 구성을 사용합니다. Used, application.yaml.🎜
@bean @configurationproperties(prefix = "spring.datasource.dbcp") public datasource mysqlsource() { return datasourcebuilder.create().build(); } @bean public jdbctemplate mysqljdbctemplate() { return new jdbctemplate(mysqlsource()); }🎜 jdbctemplate 개체에 종속성을 자동으로 삽입하는 방법을 오랫동안 찾았지만 여전히 알 수 없습니다. 다음과 같이 직접 데이터 소스를 생성한 다음 새로 만듭니다. jdbctemlate 객체를 사용하고 마지막으로 jdbctemplate을 사용하여 데이터베이스를 작동합니다. 이 글은 한 번만 알려주시기 바랍니다. 🎜
jdbctemplate jdbctemplate = mysqljdbctemplate(); jdbctemplate.execute("drop table if exists customers"); jdbctemplate.execute("create table customers(" + "id serial, first_name varchar(255), last_name varchar(255))"); // split up the array of whole names into an array of first/last names list<object[]> splitupnames = arrays.aslist("john woo", "jeff dean", "josh bloch", "josh long") .stream() .map(name -> name.split(" ")) .collect(collectors.tolist()); // use a java 8 stream to print out each tuple of the list splitupnames.foreach(name -> log.info(string.format("inserting customer record for %s %s", name[0], name[1]))); // uses jdbctemplate's batchupdate operation to bulk load data jdbctemplate.batchupdate("insert into customers(first_name, last_name) values (?,?)", splitupnames); log.info("querying for customer records where first_name = 'josh':"); jdbctemplate.query( "select id, first_name, last_name from customers where first_name = ?", new object[]{"josh"}, (rs, rownum) -> new customer(rs.getlong("id"), rs.getstring("first_name"), rs.getstring("last_name"))) .foreach(customer -> log.info(customer.tostring()));🎜다음은 jdk8의 기능적 프로그래밍을 사용하여 데이터베이스에 대한 몇 가지 crud 작업입니다. 🎜
mysql> select * from customers; +----+------------+-----------+ | id | first_name | last_name | +----+------------+-----------+ | 1 | john | woo | | 2 | jeff | dean | | 3 | josh | bloch | | 4 | josh | long | +----+------------+-----------+ 4 rows in set (0.00 sec)🎜다음은 mysql 클라이언트에서 확인됩니다. 🎜
<properties> <java.version>1.8</java.version> </properties>🎜🎜5 일부 함정이 발생했습니다🎜🎜🎜🎜maven 구성🎜 🎜🎜사용 jdk8의 lamda 표현식, java.version은 maven🎜rrreee🎜docker service restart🎜🎜🎜에서 구성되어야 하며 컨테이너도 중단되고 컨테이너가 --restart=always 매개변수를 가져올 때 실행되지 않아야 합니다. 🎜
위 내용은 Docker에 mysql을 설치하고 실행하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!