current location:Home > Technical Articles > Operation and Maintenance > Nginx
- Direction:
- All web3.0 Backend Development Web Front-end Database Operation and Maintenance Development Tools PHP Framework Daily Programming WeChat Applet Common Problem Other Tech CMS Tutorial Java System Tutorial Computer Tutorials Hardware Tutorial Mobile Tutorial Software Tutorial Mobile Game Tutorial
- Classify:
-
- How to achieve nginx access
- Check the configuration file and start the Nginx service. By checking the listening status of the Nginx program, or accessing this web service in the browser, the default page will display "Welcome to nginx!". Browser access method: elinks http://localhost //Use elinks
- Nginx 7433 2019-11-01 11:00:03
-
- How to configure nginx
- How to configure nginx: First open the "/etc/nginx/conf.d/" folder; then create the configuration file; then modify the configuration items in the "/etc/nginx/nginx.conf" file; finally restart nginx. Can.
- Nginx 137988 2020-09-05 16:20:30
-
- How does nginx achieve load balancing?
- nginx provides the following three load balancing mechanisms and methods: round-robin, where requests are distributed to application servers in a circular and rotating manner; least-connected, where the next request is assigned to the server with the least number of active connections; ip-hash.
- Nginx 5609 2019-11-01 10:25:17
-
- How to explain the nginx load balancing principle orally
- The client sends a request to the reverse proxy, and then the reverse proxy forwards the request to the target server (these servers are all running the same application) according to a certain load mechanism, and returns the obtained content to the client. During the period, the proxy request may be based on Configuration is sent to different servers.
- Nginx 3765 2019-11-01 10:19:01
-
- How to develop nginx after installation
- Thanks to the modular design of nginx, it is very convenient to use nginx for modular development. The function (or handler) that actually handles http requests is ngx_http_wait_request_handler.
- Nginx 3323 2019-11-01 10:08:29
-
- What is the underlying language of nginx?
- Nginx code is written entirely from scratch in C and has been ported to many architectures and operating systems, including: Linux, FreeBSD, Solaris, Mac OS X, AIX, and Microsoft Windows.
- Nginx 4739 2019-11-01 09:57:35
-
- What does nginx/1.14.0 mean?
- nginx/1.14.0 means that the website uses nginx server, and the server version is 1.14.0. On April 24, 2013, Nginx 1.4.0 stable version was released.
- Nginx 13521 2019-11-01 09:49:34
-
- How to pronounce nginx in English
- The English pronunciation phonetic symbol of nginx is: /’endʒɪneks/, and its correct pronunciation reads the word engine x. Nginx (engine x) is a high-performance HTTP and reverse proxy web server that also provides IMAP/POP3/SMTP services.
- Nginx 24000 2019-11-01 09:41:14
-
- Check whether nginx is started
- How to check whether nginx is started: first use "ps -ef" to list the process; then filter by "grep"; finally, execute the command "ps -ef | grep nginx" to check whether nginx is started.
- Nginx 22940 2019-10-24 11:50:38
-
- Does nginx need to be restarted after configuring it?
- After nginx is configured, it needs to be restarted. The restart method is: first modify the nginx configuration file; then use the command "nginx -s reload" to restart to make the configuration file take effect.
- Nginx 13198 2019-10-24 11:43:16
-
- Can nginx be used as a web server?
- nginx can be used as a web server, because nginx is a lightweight web server, reverse proxy server and email proxy server. nginx can be compiled and run on most UnixLinux OS, and there is a Windows ported version.
- Nginx 5153 2019-10-24 11:38:56
-
- Where is the nginx file?
- The nginx file is located in the path "/usr/local/nginx/conf/nginx.conf". You can find the path of the nginx executable file by running the command "ps -ef | grep nginx".
- Nginx 4925 2019-10-24 11:32:53
-
- What is the nginx port?
- The default port of nginx is 80. Users can also modify the value of the default port through the nginx configuration file nginx.conf.
- Nginx 15450 2019-10-24 11:28:22
-
- nginx load balancing principle
- The principle of nginx load balancing is: Vertical expansion. Increasing hardware processing capabilities from the perspective of a single machine cannot meet the problems of large traffic and massive data in large distributed systems. Therefore, horizontal expansion is needed to meet the processing capabilities of large website services by adding machines. .
- Nginx 8418 2019-10-24 13:08:03
-
- The difference between nginx and tomcat
- The difference between nginx and tomcat is: nginx is often used as a static content service and proxy server, directly forwarding external requests to the subsequent application server; tomcat is more used as a container for an application.
- Nginx 17920 2019-10-23 16:59:26