One: operation and maintenance chat
As a Linux OPS engineer, you need to work on your own problem-solving methods in order to ensure that you have a skilled server to build and maintain your optimization skills.
How to contribute to the operation of their own work, automation operations will become very important, on the one hand, can not only save the workload of the maintenance engineer, on the other hand can also be from
Improve server performance to a large extent. To know that the server is dealing with thousands of data from the user's concurrent access, so in the operation to find solutions, rather than blindly
Software installation, hard to go to a sentence to knock the order.
Because of the recent learning of PHP, so the construction of the PHP environment is recorded here.
II: Introduction of WAMPP Software
Here I choose to install WAMPP integration software on Windows, first briefly introduce XAMPP this software:
XAMPP (Apache+mysql+php+perl) is a powerful building-station integration package. The original name of this package is lampp, but in order to avoid misunderstanding, the latest version has been renamed to XAMPP. It can be installed in various operating systems, such as Windows, Linux, Solaris, Mac os X, and many more languages: English, Simplified Chinese, Traditional Chinese, Korean, Russian, Japanese, etc. [1] Many people have realized from their own experience that installing Apache servers is not an easy thing to do. It's even harder if you want to add MySQL, PHP, and Perl. XAMPP is a version of Apache that is easy to install and contains MySQL, PHP, and Perl. XAMPP is really easy to install and use: Just download, unzip, start. Three: Start to install the integration environment
In order to avoid people to search the website about the software download information, this software has been a personal sharing
Link: https://pan.baidu.com/s/1Ide1UETtRbqunPzXa1CxEg Password: vpg2 (xampp Windows 64-bit)
Also if you are not too troublesome to go to the official website to download, select the version you want to install can be
Https://www.apachefriends.org/zh_cn/index.html
and ordinary software Installation no difference, blindly next, installed after the interface as follows
Here to initialize some of these services such as Apache,mysql
For some configuration of MySQL please see another blog: https://www.cnblogs.com/activecode/p/9350097.html
Four: Use of integrated environments
Same as Apache and other services, using Web interface binding IP (FQDN) +port as a path to access
As described earlier in this integration environment can not only explain php,html and other languages, but also as a MySQL database management tools, known as the phpMyAdmin
You can edit the config.inc.php file in the Phpmysqadmin directory with a text editor, primarily with MySQL verification
1 /*authentication type and Info*/2 $cfg[' Servers '] [$i[' auth_type '] = ' config ';3 $cfg[' Servers '] [$i[' user '] = ' root ';4 $cfg[' Servers '] [$i[' password '] = ' Lp200107 ';5 $cfg[' Servers '] [$i[' extension '] = ' mysql ';6 $cfg[' Servers '] [$i[' allownopassword '] =true;7 $cfg[' Lang '] = ';
Also enter the sub-path phpMyAdmin to login to the management interface
Construction of PHP integrated development environment XAMPP