基本指令:
#1、步驟一:tar 指令tar -zxvf 原始碼包(.tar.gz結尾的壓縮套件)的路徑,(.bzip2結尾的用jxvf)
2、步驟二:進入到解壓縮目錄,cd指令
3、步驟三:配置, ./configure --prefix=指定安裝目錄
4、步驟四:編譯,make
5、步驟五:安裝,make install
準備工作:
先使用winscp連接伺服器,將套件置於/php/tools目錄下。
安裝開始:
一、安裝mysql,先透過yum安裝mysql所需依賴
yum -y install gcc gcc-c++ cmake ncurses-devel
二、進入到mysql原始碼包目錄下
cd /php/tools/mysql
三、解壓縮
tar -zxvf mysql-5.6.35.tar.gz
四、進入解壓縮目錄
#cd mysql-5.6.35
五、設定
cmake -DCMAKE_INSTALL_PREFIX=/php/server/mysql -DMYSQL_DATADIR=/php/server/data -DDEFAULT_CHARSET=utf8 -DDEFAULT_COLLATION=utf8_general_ci
#六、編譯安裝
make && make install
相關推薦:《PHP入門教學》
七、設定mysql
1、複製安裝目錄中的MySQL設定文件,到/etc/my.cnf。
\cp -r /php/tools/mysql/mysql-5.6.35/support-files/my-default.cnf /etc/my.cnf
2、修改MySQL設定檔(宣告MySQL資料存放目錄)
vi /etc/my.cnf
在[mysqld]下設定這一行:datadir = /php/server/data
# 3.建立MySQL使用者群組並建立使用者加入使用者群組
groupadd mysql useradd -g mysql -s /sbin/nologin mysql
4、初始化資料庫(執行下述指令會在data目錄下產生mysql/test等預設資料庫)
/php/server/mysql/scripts/mysql_install_db \ --basedir=/php/server/mysql \ --datadir=/php/server/data \ --user=mysql
錯誤:
安裝autoconf解決,再執行上面指令一次
yum -y install autoconf
5、啟動MySQL服務(註:&表示後台啟動)
/php/server/mysql/bin/mysqld_safe --user=mysql &
6、驗證MySQL服務是否啟動成功(相當於win檢視程序)
ps -A | grep mysql
7、初始化資料庫,設定root帳號的密碼(預設密碼空)
/php/server/mysql/bin/mysql -uroot -p #回车输入密码,然后执行下述SQL语句
刪除測試資料庫&& 刪除本機匿名連線的空白密碼帳號
drop database test; delete from mysql.user where user='';
修改密碼
update mysql.user set password=password('admin888') where user='root'; flush privileges;
忘記密碼,強制修改密碼
1、開啟mysql設定檔
#vi /etc/my.cnf
2、在[mysqld]下一行新增skip-grant-tables
3、重啟mysql服務
4、重新登陸mysql (因為上面的操作,這時密碼為空)
5、修改密碼
6、刪除mysql設定檔:my.cnf 中剛剛新增的: skip-grant-tables
7、再重啟msyql服務即可
安裝apache
1、安裝zlib
shell> cd /php/tools/apache #进入tools目录 shell> tar zxvf zlib-1.2.5.tar.gz #解压zlib安装包 shell> cd zlib-1.2.5 #进入解压目录 shell> ./configure #这个配置编译命令不要加目录参数 shell> make && make install
2、安裝apache
#shell> cd /php/tools/apache #进入tools目录 shell> tar -jxvf httpd-2.2.19.tar.bz2 #解压apache安装包 shell> cd httpd-2.2.19 #进入解压目录 shell> #配置 ./configure --prefix=/php/server/apache --enable-modules=all --enable-mods-shared=all --enable-so shell> make && make install
若解壓縮報錯誤如下,則需安裝bzip2
tar (child): lbzip2: Cannot exec: No such file or directory tar (child): Error is not recoverable: exiting now tar: Child returned status 2 tar: Error is not recoverable: exiting now
安裝指令
yum -y install bzip2
測試
##修改設定檔vi /php/server/apache/conf/httpd.conf
/php/server/apache/bin/apachectl start/stop/restart
ps -A | grep httpd
安裝PHP
shell> cd /php/tools/php shell> tar -jxvf php-7.2.6.tar.bz2 shell> cd php-7.2.6 shell> #配置 ./configure --prefix=/php/server/php --with-apxs2=/php/server/apache/bin/apxs --with-pdo-mysql=mysqlnd --with-mysqli=mysqlnd --with-zlib --enable-mbstring=all --enable-mbregex --enable-shared shell>make && make install
yum -y install libxml2 libxml2-devel
#配置Apache支援PHP
1、複製php.ini設定檔到指定目錄shell> \cp -r /php/tools/php/php-7.2.6/php.ini-development /php/server/php/lib/php.ini
shell> vi /php/server/apache/conf/httpd.conf
/php/server/apache/bin/apachectl stop /php/server/apache/bin/apachectl start
shell> echo '<?php phpinfo();' > /php/server/apache/htdocs/test.php
管理
1、mysql【mysql設定檔】/etc/my.cnf
/php/server/mysql/bin/mysqld_safe --user=mysql &
ps -A | grep mysql # 查看mysql进程 killall 服务名 #结束进程 关闭mysql服务
/php/server/mysql/bin/mysql -uroot -p
/php/server/apache/bin/apachectl start /php/server/apache/bin/apachectl stop /php/server/apache/bin/apachectl restart
最佳化:將apache、mysql加為系統服務
1、新增apache的服務腳本\cp -r /php/server/apache/bin/apachectl /etc/rc.d/init.d/httpd ln -s /etc/rc.d/init.d/httpd /etc/rc.d/rc3.d/S61httpd
vi /etc/rc.d/init.d/httpd
chkconfig --add httpd chkconfig --level 2345 httpd on
service httpd restart
CentOS下將MySQL加入服務
#1、將mysql.server這個檔案copy到/etc/init.d/目錄下,並更名為mysql\cp -r /php/tools/mysql/mysql-5.6.35/support-files/mysql.server /etc/init.d/mysql
chmod 755 /etc/init.d/mysql chkconfig --add mysql
service mysql restart
以上是php源碼包安裝步驟是什麼的詳細內容。更多資訊請關注PHP中文網其他相關文章!