mac mounting openjdk8-maven-mysql-git-docker

1. openjdk8 installation command to view the address: https: //github.com/AdoptOpenJDK/homebrew-openjdk#other-versions
   feel address the above command do not fly, or manually download it at the following address: https://adoptopenjdk.net/
2 . github installed from Xcode app store and search for download to install
3. installation maven:
   . 1) from Apache maven official website to download the installation package http://maven.apache.org/download.cgi
   2) decompress the downloaded package to a directory, such as: /Users/xxx/maven3.6.0
   . 3) configure the environment variables: VI ~ / .bash_profile
      Export M2_HOME = "/ the Users / XXX / maven3.6.0"
      Export the PATH = "$ M2_HOME / bin: $ the PATH "
      press esc, enter :: wq to save and exit
   4) input source ~ / .bash_profile so that the environment variables to take effect.
   5) Enter the mvn -version maven see if the installation was successful.
   6) Configure maven local inventory Address:
      command: cd /Users/xxx/maven3.6.0
            mkdir repo
            cd /Users/xxx/maven3.6.0/conf
            vi settings.xml
            add the following <localRepository> /Users/xxx/maven3.6.0/repo </ localRepository>
4. Installation MySQL: Management Interface Tool, clients and server installation
   1) Quguan network download installation packages: https: // dev.mysql.com/downloads/mysql/5.7.html#downloads select dmg file download
   2) after the download is complete, double-click and install, midway need to set the root password, automatically generated here, your own save the generated password.
   3) to "System Preferences" where to find the MySQL icon, double-click on "start MySQL Server" to start the service.
   4) configuration environment variable
      into the / usr / local / mysql / bin , whether there is to view this directory mysql
      execute vim ~ / .bash_profile
      add mysql / bin directory, PATH in the file = $ PATH: / usr / local / mysql / bin
      after the addition is complete, press esc, and then enter: wq save.
      Finally, the command line input ~ Source / .bash_profile
   5) Now you can log in mysql -uroot -p mysql, and will let you enter a password, the login is successful, you can change the password by following command
      SET PASSWORD FOR 'root' @ 'localhost' = PASSWORD ( ' newpass');
   6) Mac on mysql management tool that uses sequel pro, Download: HTTP: //www.sequelpro.com/



5. Flow-install git: $ BREW install git-Flow-AVH
6. the Spring Tool Suite is installed, download address: https://spring.io/tools3/sts/all/
7. The installation docker, using homebrew installation docker, command: the install BREW Cask Docker





8. The installation mysql: use docker img install mysql
   open docker, set the proxy (proxies), select Manual proxy configuration, the following web server (HTTP) and secure web server (HTTPS) input:
   http://172.21.200.90:8080
   THESE the hosts in the Bypass proxy settings for & domains input:. localhost, 127.0.0.1,172.21 * *
   click on "Apply & Restart"
   to open a command line window, type: docker pull mysql: 5.7 Download and installation
   is complete, respectively, enter the following:
   Docker --name DEV01 RUN = -e MYSQL_ROOT_PASSWORD database password -d -p 3306: 3306 mysql : 5.7
   docker run --name dev02 -e MYSQL_ROOT_PASSWORD = database password -d -p 3307: 3306 mysql: 5.7
   Start 2 MySQL services, ports, respectively 3307 3306





PS:
1. compression / decompression rar zip files and other tools Download: https : //theunarchiver.com/
2. text editor: UltraEdit personal use
Download Ultraedit for Mac 18.00.0.30 crack version, address: https: //www.zhinin.com/ultraedit-mac.html
downloaded need to open once again shut down.
Command line: printf '\ x31 \ xC0 \ xFF \ xC0 \ xC3 \ x90' | dd seek = $ ((0x76DC40)) conv = notrunc bs = 1 of = / Applications / UltraEdit.app / Contents / MacOS / UltraEdit
cracks success


Guess you like

Origin www.cnblogs.com/jimmyshan-study/p/10978533.html