Release jar package to central warehouse

1. Register sonatype and submit issue work order (you can find online tutorial by yourself) 2. Install gpg and create public key and private key gpg -- Gen key (you can find the tutorial on the Internet) 3. Send the key corresponding to the public key to the server (xxxx) secret key (the tutorial can be found on the Internet) gpg --keyserver ...

Posted by snipesh0tz on Sun, 12 Apr 2020 08:31:17 -0700

How gRPC can save your development time

Thanks for sharing- http://bjbsair.com/2020-04-10/tech-info/53317.html At this point, you should have heard of "gRPC" (at least once in the title). In this article, I will focus on the benefits of using gRPC as a communication medium between microservices. First of all, I will try to briefly introduce the history of architecture evo ...

Posted by youscript on Fri, 10 Apr 2020 05:14:49 -0700

Laobaixue programming -- an example analysis of "autotools" - netdata

Summary After learning the knowledge of autotool series for a few days, I found a practical project and compared it with the analysis. Due to the limited knowledge, I don't know how deep I can go. I'm looking forward to it. Netdata Netdata is a monitoring software, which is well done. Second level is a feature of netdata. I don't talk about it ...

Posted by shivani.shm on Thu, 09 Apr 2020 04:53:44 -0700

rpm installs mysql and modifies mysql login password

Reprint https://blog.csdn.net/yejiyueshang/article/details/78745664 Linux version: CentOS 6.5 64 bit 1. Download MySQL wget https://dev.mysql.com/get/Downloads/MySQL-5.7/mysql-5.7.20-1.el6.x86_64.rpm-bundle.tar 1 2. decompression mkdir mysql cd mysql [root@localhost mysql]# tar -xvf mysql-5.7.20-1.el6.x86_64.rpm-bundle. ...

Posted by soianyc on Thu, 02 Apr 2020 21:20:22 -0700

Automatic deployment tool syncd

1, Deployment installation (1) Common installation methods 1.  curl https://syncd.cc/install.sh | bash 2. dockerfile installation mode is under test (2) Installation references 1.https://syncd.cc/docs/#/install 2.https: //github.com/dreamans/syncd  3.https: //gitee.com/dreamans/syncd 2, Specification for use (I) service address 1. ...

Posted by Psycho on Wed, 01 Apr 2020 19:49:38 -0700

[SpringBoot WEB series] summary of asynchronous request knowledge points and usage postures

[SpringBoot WEB series] summary of asynchronous request knowledge points and usage postures In servlet 3.0, asynchronous request support has been introduced, but in actual business development, there are not many children's shoes that may have used this feature? As a literacy and usage tutorial for asynchronous requests, this blog post will ...

Posted by greip on Tue, 31 Mar 2020 22:54:18 -0700

GitLab backup and recovery

Because the company changed the server service provider and the server was migrated to another service provider, today we will simulate the operation of online migration of gitlab git-A IP:192.168.82.184 git-B IP:192.168.82.184 If the version number is the same, the backup migration will fail   Step 1.gitlab backup gita-A #c ...

Posted by vichiq on Tue, 31 Mar 2020 10:54:28 -0700

Compile and install vim8 under centos7, and support python3

1. Install python3 vim7.4 and python2.7 are installed by default in CentOS 7. Now we want to install vim8 and make it support python3. First of all, you need to install python3 in the system. For specific installation steps, please refer to my previous blog: https://blog.csdn.net/geerniya/article/details/79263846 2. Compile ...

Posted by ltd on Tue, 31 Mar 2020 05:04:47 -0700

Publish a npm package of your own in one minute

How to publish an npm package 1. Register npm account Landing https://www.npmjs.com Use email to register, receive and verify email(here are two emails: Welcome to npm and Verify your npm email address) 2. Select the target folder and cd in the command line E:\xxx>cd test E:\xxx\test> 3. Execute npm init Enter th ...

Posted by GamingWarrior on Tue, 31 Mar 2020 04:08:50 -0700

Git version control details

GitHub operation process: 1. Create a new code base $ git init $ git clone [url] 2. Create branch Administrator@UMMMZHE4GX4KT68 MINGW64 ~/Desktop/pythoncode/4.20/my.github.io (master) $ git checkout -b xxz Switched to a new branch 'xxz' 3. View status Administrator@UMMMZHE4GX4KT68 MINGW64 ~/Desktop/pythoncode/4.20/ ...

Posted by sader on Tue, 31 Mar 2020 03:51:02 -0700