


Linux server upgrade steps 1. Detect the installation mode of MySQL, Apache, and PHP: The main purpose of this part is to understand the installation mode of MySQL, Apache, and PHP, so as to choose how to delete the previous old version. 1. MySQL: # rpm –q mysql package mysql is not installed. The displayed results show that MySQL is not installed as an RPM package, but as a binary package. 2. Apache: # rpm –q apache apache-1.3.12-2 The displayed results show that Apache is installed as an RPM package and the version is 1.3.12-2. 3. PHP: # rpm –q php php-3.0.15-2 The displayed results show that PHP is installed as an RPM package and the version is 3.0.15-2. two. Back up files on Linux server: 1. MySQL: Export library file, export all previous libraries in MySQL. 2. PHP3: Back up the PHP source files. 3. Apache: This time due to a problem with the Linux version, the new version of Apache, whether it is RPM (Redhat Package Management) or binary package, cannot be installed successfully. Apache has not been upgraded, but its key httpd.conf file has been modified (this part will be described in detail later). three. Delete the old version of MySQL and PHP: Choose different deletion methods according to the installation mode detected in "2". 1. MySQL: It has been detected that the binary package is used to install and uninstall. First use the "find –name" command to find the paths of all MySQL files, and then use the "rm –rf file path" command to delete them one by one. 2. Apache: As mentioned earlier, Apache has not been upgraded due to problems with the Linux version. 3. PHP: Since it has been detected in "Two" that PHP3 is installed in RPM, you only need to run: # rpm –e php-3.0.15-2 error: removing these packages would break dependencies: php is needed by php -imap-3.0.15-2 php is needed by php-ldap-3.0.15-2 php is needed by php-pqsql-3.0.15-2 php is needed by piranha-qui-0.4.12-1 After running, Displays the errors listed above. Solution: First use the find command to find the path of each package shown above, then delete them one by one and run the command again. Of course, you can also use the rpm command to delete these files one by one. #rm –rf package path 4. Install the new version: The new versions of MySQL and PHP are all placed in the tar packages of mysql-3.23.46.tar.gz and php-4.0.6.tar.gz in the "/root" directory. 1. MySQL: (1) # cd /root Enter the root directory. (2) # tar –zxvf mysql-3.23.46.tar.gz Unpack the tar package of the new version of mysql that was previously placed in the root directory. (3) # cd mysql-3.23.46 Enter the directory of mysql after unpacking. (4) # ./configure –prefix=/usr/local/mysql >--with-berkeley-db=./bdb >--with-tcp-port=3306 >--with-mysqld-user=mysql >- -with-charset=gb2312 >--with-extra-charset=latinl Configure mysql: ①Installation path; ②Support bdb database type, transaction processing; ③Set port to 3306; (Pay attention to this part, if this is not written during configuration Configuration statement, or written as 9999, will cause MySQL to be unable to enter normally) ④Set the user; (5) # make compile. (6) # make install installation. (7) # scripts/mysql_install_db Establish initial database (8) # chown –R root /usr/local/mysql # chown –R mysql /usr/local/mysql Set permissions (9) # adduser mysql Add mysql user (10) # cd /etc/rc.d/init.d # cp /root/mysql-3.23.46/support-files/mysql.server mysql # chmod +x mysql Increase execution permissions (11) # /sbin/chkconfig –del mysql # /sbin/chkconfig –add mysql Run chkconfig and add mysql to the system’s startup service group (12) # reboot Restart the Linux server (13) # cd /usr/local/mysql/bin #./mysql Enter MySQL ( 14) mysql>show databases; +----------+ | Database | +----------+ | mysql | | test | +---------- -+ 2 rows in set (0.11 sec) Display the libraries existing in MySQL (15) mysql>use mysql Enter the library named mysql (16) mysql>grant all on *.* to admin@'%' identified by '422817 '; Set user and password (17) mysql>quit Bye Exit MySQL (18) # ./mysql –u root admin –p Enter password: Try to enter MySQL according to the user and password just set. At this point, MySQL installation and testing are successful. The next step is to import the library file backed up before. MySQL-Front is also used. However, one thing to note is that when importing the previous library file, you must first create the database, and it must have the same name as before. 2. Apache: Although the entire Linux server has been upgraded this time, the final result is that Apache still uses the original version. But here, let me mention the installation process of Apache as RPM package: First find the previous CD of Linux 6.02. In the "RedHat/RPM" directory, there is a file named apache-1.3.12-2.i386.rpm file. Since the Linux server does not have a CDROM, the method is the same as mentioned above. Now copy the files in this directory under Windows, and then copy them to the directory where Samba is enabled through the LAN. (1) # cp /home/httpd/html/pos/bak/apache-1.3.12-2.i386.rpm /root Copy the RPM package files to the directory "/root" (2) # cd root Enter root Directory (3) # rpm –i apache-1.3.12-2.i386.rpm Install the apache-1.3.12-2.i386.rpm package to the Linux server. The default installation path is: ./usr/lib/ apache, if it is a binary package, the path should be: /usr/local/apache. (4) # /etc/rc.d/init.d/httpd start Run Apache.If the result is as follows, it means that it can be started normally. Starting httpd: OK ] (5) # ps aux | grep httpd Query all programs in the entire system that include httpd (Apache server) and are executing. root 1368 0.0 3.4 4560 2196 ? S 16:31 0:00 httpd nobody 1371 0.0 3.6 4668 2280 ? S 16:31 0:00 httpd nobody 1372 0.0 3.6 4668 2280 ? S 16:31 0:00 httpd nobody 1 373 0.0 3.6 4668 2280 ? S 16:31 0:00 httpd …… (6) If Apache is running normally, you can browse to the Apache welcome page from IE on other machines. At this point, Apache Web Server is installed and tested successfully. 3. PHP: (1) # /etc/rc.d/init.d/httpd stop First stop Apache (2) # cd /root to enter the root directory. (3) # tar –zxvf php-4.0.6.tar.gz Unpack the PHP4 tar package previously placed in the root directory. (4) # cd php-4.0.6 Enter the directory of PHP4 after unpacking. (5) # ./configure –apxs=/usr/sbin/apxs >--with-config-file-path=/etc/httpd/conf >--with-mysql=/usr/local/mysql >--with -gd >--with-zlib >--with-system-regex >--enable-ftp Configure PHP: ① If apxs is installed to another path, you must change "/usr/sbin/apxs" to point to the apxs script program The path where it is located. Usually for binary packages, the path is "/usr/local/apache/bin/apxs"; for RPM packages, the path is "/usr/sbin/apxs". ② Configure PHP as Apache's DSO module. The configuration file will be saved in "/etc/httpd/conf" (together with the Apache configuration file); ③ If MySQL is installed as an RPM package, you should change "--with-mysql=/usr/local/mysql" to " --with-mysql" ④ If there is no GD library, please cancel "--with-gd" ⑤ If you want to support the ftp upload function, you need "--enable-ftp" (6) # make compile. (7) # make install installation. (8) # reboot Restart the Faresever server 5. Configuration: This part of the configuration is mainly for Apache's httpd.conf file. We require that Apache, which has not been upgraded before, can parse both PHP4 and PHP4. Since the Apache server of the Linux server is packaged in RPM, the httpd.conf file is placed in "/etc/httpd/conf/httpd.conf". The following are the editing changes made to the configuration file: 1. Find # LoadModule php3_module modules/libphp3.so in the file and change it to: # LoadModule php4_module /usr/lib/apache/libphp4.so Function: Change the PHP3 Module previously loaded by Apache to the PHP4 Module, followed by The path of the Module file. 2. Find the file] # AddModule mod_php3.c Change it to: # AddModule mod_php4.c Function: Change the Module previously added by Apache from PHP3 to PHP4. 3. Find the file: Port 80, where it is located, and add the following statement below: DirectoryIndex index.html index.shtml index.cgi index.phtml index.php3 index.php AddType application/x-httpd-php .php3 AddType application/x -httpd-php .php AddType application/x-httpd-php-source .phps Function: It can be an unupgraded Apache, which can parse both PHP3 and PHP4. At this point, the Apache configuration file "/etc/httpd/conf/httpd.conf" of version 1.3.12 has been modified. six. Possible errors during installation: 1. MySQL: (1) If the MySQL installation proceeds to the previous step (13), an error occurs and cannot be entered normally. Reason for the error: The port setting is incorrect. Use the "netstat -t -l -p" command to check the network status and find that there is no mysql at all and only port 9999 is running. Modification method: ① Check /usr/local/mysql/bin/safe_mysqld to see if there is a line MYSQL_TCP_PORT=${MYSQL_TCP_PORT:-9999}, change it to MYSQL_TCP_PORT=${MYSQL_TCP_PORT:-3306} ② Use VI editor to enter and view. and modify. # vi /usr/local/mysql/bin/safe_mysqld ③ Restart mysql # /etc/rc.d/init.d/mysql.server stop # /etc/rc.d/init.d/mysql.server start (2) There is an error connecting to MySQL. Just change the opendatabase.php file to 127.0.0.1 and you can connect normally. Reason for the error: permission issue. Modification method: Delete a record in the user table of the mysql library where the Host is fareserve.fareexpress.com and the User is empty. 2. Apache: I wanted to install a new version, namely Apache 1.3.22, but neither the RPM package nor the binary package could be installed successfully. Considered to be due to the Linux version. In the end, I still used the previous version of Apache and installed it with the RPM package, without any problems. 3. PHP: Installation went smoothly. It’s just that after installation, FareExpress (PHP3) and Power POS Management (PHP4) cannot be browsed in IE. Later, Apache’s httpd.conf (configuration file) was modified, which has been introduced in the fifth point “Configuration”. It is clear that I will not repeat the introduction here.

linux设备节点是应用程序和设备驱动程序沟通的一个桥梁;设备节点被创建在“/dev”,是连接内核与用户层的枢纽,相当于硬盘的inode一样的东西,记录了硬件设备的位置和信息。设备节点使用户可以与内核进行硬件的沟通,读写设备以及其他的操作。

区别:1、open是UNIX系统调用函数,而fopen是ANSIC标准中的C语言库函数;2、open的移植性没fopen好;3、fopen只能操纵普通正规文件,而open可以操作普通文件、网络套接字等;4、open无缓冲,fopen有缓冲。

端口映射又称端口转发,是指将外部主机的IP地址的端口映射到Intranet中的一台计算机,当用户访问外网IP的这个端口时,服务器自动将请求映射到对应局域网内部的机器上;可以通过使用动态或固定的公共网络IP路由ADSL宽带路由器来实现。

在linux中,eof是自定义终止符,是“END Of File”的缩写;因为是自定义的终止符,所以eof就不是固定的,可以随意的设置别名,linux中按“ctrl+d”就代表eof,eof一般会配合cat命令用于多行文本输出,指文件末尾。

在linux中,可以利用“rpm -qa pcre”命令判断pcre是否安装;rpm命令专门用于管理各项套件,使用该命令后,若结果中出现pcre的版本信息,则表示pcre已经安装,若没有出现版本信息,则表示没有安装pcre。

linux查询mac地址的方法:1、打开系统,在桌面中点击鼠标右键,选择“打开终端”;2、在终端中,执行“ifconfig”命令,查看输出结果,在输出信息第四行中紧跟“ether”单词后的字符串就是mac地址。

在linux中,rpc是远程过程调用的意思,是Reomote Procedure Call的缩写,特指一种隐藏了过程调用时实际通信细节的IPC方法;linux中通过RPC可以充分利用非共享内存的多处理器环境,提高系统资源的利用率。

在linux中,交叉编译是指在一个平台上生成另一个平台上的可执行代码,即编译源代码的平台和执行源代码编译后程序的平台是两个不同的平台。使用交叉编译的原因:1、目标系统没有能力在其上进行本地编译;2、有能力进行源代码编译的平台与目标平台不同。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SublimeText3 Mac version
God-level code editing software (SublimeText3)

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

Zend Studio 13.0.1
Powerful PHP integrated development environment
