current location:Home > Technical Articles > Development Tools
- Direction:
- All web3.0 Backend Development Web Front-end Database Operation and Maintenance Development Tools PHP Framework Common Problem Other Tech CMS Tutorial Java System Tutorial Computer Tutorials Hardware Tutorial Mobile Tutorial Software Tutorial Mobile Game Tutorial
- Classify:
-
- Linux deployment golang
- With the growing development of Go language, more and more companies and programmers choose to use Go language for development. Linux systems are widely used as development and deployment environments, and deploying Go programs to Linux systems has become an inevitable task. This article will introduce how to deploy Go programs on Linux systems. 1. Install the Go language environment. The official website of the Go language provides a binary release package for Linux systems, which can be downloaded from the official website. The specific operations are as follows: 1. Open the official website https://golang.or
- Golang . vim 1390 2023-05-19 09:09:36
-
- How to use Linux nano command
- 1. Introduction to nano command Nano is a small, free, and friendly editor designed to replace Pico, the default editor in the non-free Pine package. Nano not only replicates the look and feel of Pico, but also implements some features that are missing (or disabled by default) in Pico, such as "Search and Replace" and "Go to Line and Column Numbers". nano is a character terminal text editor, a bit like the editor program under DOS. It is much simpler than vi/vim and is more suitable for Linux beginners. The default editor of some Linux distributions is nano. For example, Ubuntu system has nano installed by default. 2. Nano command usage examples 1. Command installation [root@s142
- Linux Operation and Maintenance . vim 4863 2023-05-18 15:20:26
-
- How to reverse proxy Nginx to Tomcat server
- In actual production, tomcat servers are generally not used alone in projects. Nginx performs better in responding to static resources. In addition, since nginx is a server specifically used for reverse proxy, it is easy to forward Java requests to the backend. The client is handed over to the tomcat container for processing, and it is used to process static resources. In nginx, a server{} block is often used to configure a relatively large project. Generally, it is all the configurations of a domain name. There are usually multiple configurations in a server block. location to define multiple request rules, such as domain name and root directory configuration, static resource support, phpfastcgi request, url rewriting, error page configuration and other configurations, so
- Nginx . vim 1872 2023-05-17 21:01:04
-
- Is the art of javascript programming obsolete?
- As technology continues to develop, programming languages are also constantly evolving. As one of the main languages for front-end development, JavaScript is no exception. Since its birth, JavaScript has been continuously updated, improved and optimized to adapt to new needs and application scenarios. Over time, JavaScript has become more and more widely used, and is even used in external server applications. Therefore, we need to look at this problem from a different perspective. History of JavaScriptJavaScript Begins
- Front-end Q&A . vim 736 2023-05-17 14:13:39
-
- Gitlab cannot be opened after clearing the firewall
- Among enterprise-level code hosting platforms, GitLab is a highly respected choice. In the daily operation and maintenance of the platform, it is very common to add firewall rules. However, if the firewall rules are set improperly, GitLab may be unable to be accessed. If this happens, users can first consider clearing the firewall. However, some users may find that GitLab is still unable to access normally after clearing the firewall. This article will introduce you to the relevant processing methods in detail. Problem description: When users clear the firewall, they usually use the following command: iptables -F
- git . vim 1044 2023-05-17 12:41:07
-
- How to install nodejs under ubuntu and implement Nginx reverse proxy server
- 1. It is strongly recommended to use nvm (node version manager) to install the new version of nodejs. There are more or less problems with other installation methods. The specific steps are as follows: 1. Download nvm through the git command. The execution command is as follows. We download nvm to /root/git/ (remember to install git first): [root@vm-22-180-ubuntu~]#pwd/ root[root@vm-22-180-ubuntu~]#mkdirgit[root@vm-22-180-ubuntu~]#cdgit[root@vm-22-180-ubuntu~]#gitclonehttps://
- Nginx . vim 1716 2023-05-17 09:13:05
-
- How to install and configure FastDFS to integrate Nginx-1.13.3
- 1: Download fastdfs We need a total of three files 1.fastdfs Distributed file storage system 2.libfastcommon Fastdfs function library 3.fastdfs-nginx-module When connecting to the nginx function module download, please note that the format downloaded here is .zip and not tar.gz. The reason for this is that an error will occur when using the fastdfs-nginx-module module to integrate nginx. The reason is that the fastdfs version must be >=5.11. Otherwise, an error will be reported when compiling nginx. You can look at the inst of the module
- Nginx . vim 1814 2023-05-16 16:43:39
-
- What is the difference between Linux commands su and sudo
- 1. Preparation The command to create a new user in Linux is useradd. In general, the path corresponding to this command is in the PATH environment variable. If typing useradd directly does not work, use the absolute path name: /usr/sbin/useradd . The useradd new user command can only be executed by the root user. First switch from the ordinary user ubuntu to the root user (how to switch will be introduced later): ubuntu@VM-0-14-ubuntu:~$su-Password:#Enter the root user login password root@VM-0-14-ubuntu:~#useradd-mtest_user
- Linux Operation and Maintenance . vim 1462 2023-05-16 11:07:12
-
- centos golang installation
- Install Golang on CentOS Go is a programming language developed by Google with good concurrency and efficient performance, and is an increasingly popular language in modern web application development. This article will introduce the steps to install and configure Golang on CentOS. 1. Download Golang First, you need to go to the official website to download the Golang installation package. In the download page, you can select the Golang version you want to download and the installation package for CentOS. wget https://
- Golang . vim 1146 2023-05-16 09:23:37
-
- How Docker runs nginx and mounts local directories into images
- 1. Pull the image dockerpullnginx from hup. 2. Create the directory to be mounted: mkdir-p/data/nginx/{conf, conf.d, html, logs} 3. You must first have a configuration file to start the container 3.1vim/data/conf/nginx. confusernginx;worker_processes1;error_log/var/log/nginx/error.logwarn;pid/var/run/nginx.pid;events{worker_connections1024;}http{includ
- Nginx . vim 1329 2023-05-15 20:25:16
-
- How to realize automatic synchronization of web pages in Linux
- Use multiple web servers to achieve load balancing. In order to maintain the consistency of resources on the front-end web server, you can synchronize updated files to other slave servers (read-only servers) through rsync on the master server (data can be written), but it cannot Automatically perform real-time synchronization. Use inotify to achieve real-time synchronization. Master server: 192.168.6.205 inotify slave server: 192.168.6.36rsync1. Configure rsync on the slave server and enable the rsync service so that the master service can synchronize resources to vim on the server. /etc/rsyncd.confuid=nginxgid=nginxport=873ho
- Linux Operation and Maintenance . vim 1082 2023-05-15 16:58:21
-
- What to use for golang ide
- As a popular programming language, Golang (or Go) often needs to use an IDE to improve development efficiency during the development process. So, what is the best Golang IDE to use? This article will recommend some of the more popular Golang IDE tools, as well as their advantages and disadvantages. 1. GoLand GoLand is an IDE tool specially designed for Golang development developed by JetBrains. GoLand provides a series of powerful functions for Golang compilation and debugging management.
- Golang . vim 707 2023-05-15 10:47:07
-
- How to install and configure golang on linux
- Download and install Golang: First, we need to download and install Golang on the Linux system. The steps are as follows: In the terminal, obtain the official Golang installation package through the following command: wget https://golang.org/dl/ Unzip the installation package. Use the following command: tar-zxvfgo1.*.linux-amd64.tar.gz to move the decompressed directory to the /usr/local directory: mvgo/usr/local. Use the export command to configure environment variables: exportGOROOT=/usr/local/ goexportGOPATH=$HOME/goexpo
- Linux Operation and Maintenance . vim 1537 2023-05-14 21:37:19
-
- How to configure and test virtual domain names in Nginx environment
- Using nginx virtual domain name configuration, you can access the local server through a specific domain name without purchasing a domain name. Reduce unnecessary expenses before launch. Configuration steps 1. Edit the nginx.conf configuration file sudovim/usr/local/nginx/nginx/conf/nginx.xonf (1) Add the domain name to the file name (to facilitate future management). The code added here is http in nginx.conf Just add it under the node. But you need to pay attention to the path of the vhost folder. The path of the vhost folder created here is: /usr/local/nginx/nginx/conf/vhost, but ng
- Nginx . vim 1753 2023-05-14 16:22:06
-
- How to configure nginx to support .htaccess files to achieve pseudo-static
- Many people who searched for information on Google said that nginx currently does not support .htaccess files. I tested it according to nginx rules and found that nginx fully supports .htaccess files! The method is as follows: 1. Create a new .htaccess file in the directory where you need to use the .htaccess file, such as one of my discuz forum directories: copy the code as follows: vim/var/www/html/168pc/bbs/.htaccess2. Inside Enter the rules. Here I enter the pseudo-static rules of discuz: Copy the code as follows: #nginxrewriterulerewrite
- Nginx . vim 2572 2023-05-14 08:19:05