(五)LAMP 平台部署和应用全指南

时间:2024-10-04 07:16:14
  • 安装 mysql 和 php 依赖软件,使用命令[root@centos01 ~]# yum -y install ncurses-devel cmake zlib-devel libxml2-devel
  • 安装 php 的 libmcrypt 扩展加密组件,依次执行命令[root@centos01 ~]# tar zxf /mnt/libmcrypt-2.5.8.tar.gz -C /usr/src/[root@centos01 ~]# cd /usr/src/libmcrypt-2.5.8/[root@centos01 libmcrypt-2.5.8]#./configure && make && make install[root@centos01 libmcrypt-2.5.8]# ln -s /usr/local/lib/libmcrypt.* /usr/lib/[root@centos01 libmcrypt-2.5.8]# cd
  • 安装 php 的 mhash 扩展加密组件,执行命令[root@centos01 ~]# tar zxf /mnt/mhash-0.9.9.9.tar.gz -C /usr/src/[root@centos01 ~]# cd /usr/src/mhash-0.9.9.9/[root@centos01 mhash-0.9.9.9]#./configure && make && make install[root@centos01 mhash-0.9.9.9]# ln -s /usr/local/lib/libmhash* /usr/lib/[root@centos01 mhash-0.9.9.9]# cd
  • 安装 mcrypt,执行命令<