Laravel + laravel admin build website background

  Local environment: laravel version: Laravel admin version: Laravel admin excellent expansion pack!!   1, Install configuration laravel 6.11.0 1. installation composer create-project --prefer-dist laravel/laravel blog 2. changing the time zone 'timezone' => 'PRC' 3. change the l ...

Posted by Trojan on Sun, 19 Jan 2020 02:56:59 -0800

Discussion on cache, buffer and swap caused by free

Discussion on cache, buffer and swap caused by free $ free total used free shared buffers cached Mem: 8062624 7910056 152568 0 5232 964468 -/+ buffers/cache: 6940356 1122268 Swap: 4194296 2592660 1601636 total: the ...

Posted by abx_2112 on Sun, 19 Jan 2020 00:40:57 -0800

centos7 mounts the new hard disk and modifies the storage path of mariadb

Environment CentOS7.4 mariadb 5.5 In principle, all mariadb installed from yum can be used Because the paths of / var/lib/mysql and / etc/my.cnf are the same The reason for this operation is that zabbix's history problem log has filled the disk, so you can only add a new hard disk and change the mysql storage path ------------------------- ...

Posted by br on Fri, 17 Jan 2020 23:53:23 -0800

sed stream editor: a powerful tool of Shell script

One of the core ideas of Linux is that everything is a file. Among these files, the text file plays an important role. All the changes of system settings, the adjustment of software parameters, and the most basic command-line operation are the operation of "text". To manipulate text, you can't ...

Posted by DeGauss on Fri, 17 Jan 2020 21:15:47 -0800

Discussion and recommendation on redis's security free configuration in docker compose

In an interesting discussion, let's take a look at the docker compose configuration script: version: '2' services: redis: image: 'redis:5.0.3-stretch' restart: always command: redis-server --requirepass redis environment: # ALLOW_EMPTY_PASSWORD is recommended only for development. - ALLOW_EMPTY_PASSWORD=yes ...

Posted by jassikundi on Thu, 16 Jan 2020 19:23:52 -0800

Deploy your own ngrok in 7 minutes

Deploy your own ngrok in 7 minutes Article Background Pre-preparation Install software Article Background Recently, to develop the WeChat Public Number, we need to use the external network ip. However, the free version on the Internet is either slow or changing IP regularly, so we decided to dep ...

Posted by baze on Thu, 16 Jan 2020 18:00:42 -0800

linux find, locate, where is, which, type

Article directory 1,find 2. locate command 3. Where is command 4. which command 5. type command 1,find Find is the most commonly used and powerful find command, which can find any type of file. The general format of the find command is: find < specify Directory > < specify condition > ...

Posted by alexus on Thu, 16 Jan 2020 09:46:02 -0800

kubernetes series tutorial kubeadm offline deployment of 1.14.1 clusters

Write before This chapter is kubernetes series tutorials The second = article mainly introduces the deployment of the kubernetes cluster through the kubeadm installation tool. Considering the limitations of the domestic network, the mirror has been downloaded to the network disk for offline deployment. 1. Overview of the environment 1.1 Instal ...

Posted by dickey on Thu, 16 Jan 2020 09:18:20 -0800

IO multiplexing -- select system call

IO multiplexing The client program processes multiple socket s. (e.g. non blocking connect) The client program processes both user input and network connections. (e.g. chat program) The server should handle listening socket and connecting socket at the same time. The server processes both TCP and UDP ...

Posted by RHolm on Thu, 16 Jan 2020 03:20:56 -0800

ubuntu 18.04 configuration opencv3.4.5+contrib+cuda10.0

1: Preparations First, configure opencv3.4.5+contrib, so you only need to continue to configure cuda on this basis. For how to configure opencv-3.4.5 + opencv-3.4.5, see this blog: opencv-3.4.5+contrib Then download cuda 10.0 at: CUDA 10.0 download II. CUDA installation install Open the terminal ...

Posted by mwichmann4 on Wed, 15 Jan 2020 01:02:34 -0800