fox111 发表于 2018-11-28 08:06:13

CentOS上yum安装Apache套件

  Centos 里的 yum 在线安装很慢.以下是替换为中国CentOS镜像服务器!
  中国官方镜像网站: http://centos.ustc.edu.cn/
  /* 使用说明 */
  cd /etc/yum.repos.d[进入yum.repos.d目录]
  mv CentOS-Base.repo CentOS-Base.repo.save[修改源文件名称备份]
  wget http://centos.ustc.edu.cn/CentOS-Base.repo.5[下载]
  mv CentOS-Base.repo.5 CentOS-Base.repo[下载后的文件更名]
  1. 更新系统内核到最新.
  yum -y update
  系统更新后,如果yum安装时提示错误信息,请执行以下命令修复.
  rpm –import /etc/pki/rpm-gpg/RPM*
  2. 安装Apahce, PHP, Mysql, 以及php连接mysql库组件
  yum -y install httpd php mysql mysql-server php-mysql
  //安装mysql扩展
  yum -y install mysql-connector-odbc mysql-devel libdbi-dbd-mysql
  //安装php的扩展
  yum -y install php-gd php-xml php-mbstring php-ldap php-pear php-xmlrpc
  //安装apache扩展
  yum -y install httpd-manual mod_ssl mod_perl mod_auth_mysql
  
  一次性粘贴安装:
  yum -y install httpd php mysql mysql-server php-mysql httpd-manual mod_ssl mod_perl mod_auth_mysql php-mcrypt php-gd php-xml php-mbstring php-ldap php-pear php-xmlrpc mysql-connector-odbc mysql-devel libdbi-dbd-mysql
  3. 启动服务配置
  /sbin/chkconfig httpd on [设置apache为自启动]
  /sbin/chkconfig –-add mysqld
  /sbin/chkconfig mysqld on
  /sbin/service httpd start [自启动 httpd 服务]
  /sbin/service mysqld start [自启动mysqld服务]
  4.设置mysql数据库root帐号密码。
  mysqladmin -u root password ‘新密码’ [引号内填密码]
  让mysql数据库更安全
  复制内容到剪贴板
  代码:
  mysql -u root -p [此时会要求你输入刚刚设置的密码,输入后回车即可
  mysql> DROP DATABASE test; [删除test数据库]
  mysql> DELETE FROM mysql.user WHERE user = ”; [删除匿名帐户]
  mysql> FLUSH PRIVILEGES; [重载权限]
  5. 防火墙配置
  a.添加.允许访问端口{21: ftp, 80: http}.
  iptables -I RH-Firewall-1-INPUT -m state –state NEW -m tcp -p tcp –dport 21 -j ACCEPT
  iptables -I RH-Firewall-1-INPUT -m state –state NEW -m tcp -p tcp –dport 80 -j ACCEPT
  郁闷.请把上面复制到记事本里,然后把–state这段–改成小写的,再操作.否则粘贴时会出现乱码.
  b.关闭防火墙{不推荐}.
  service iptables stop
  c.重置加载防火墙
  service iptables restart
  6. 安装phpMyAdmin
  进入phpMyAdmin官方下载最新版本后,上传到你的网站目录下,然后进行配置。只需几步即可搞定。
  a. config.sample.inc.php更名为config.inc.php;
  b. 打开config.inc.php文件,进行以下修改;
  // $cfg['Servers'][$i]['controluser'] = ‘pma’;
  // $cfg['Servers'][$i]['controlpass'] = ‘pmapass’;
  // $cfg['Servers'][$i]['pmadb'] = ‘phpmyadmin’;
  // $cfg['Servers'][$i]['bookmarktable'] = ‘pma_bookmark’;
  // $cfg['Servers'][$i]['relation'] = ‘pma_relation’;
  // $cfg['Servers'][$i]['table_info'] = ‘pma_table_info’;
  // $cfg['Servers'][$i]['table_coords'] = ‘pma_table_coords’;
  // $cfg['Servers'][$i]['pdf_pages'] = ‘pma_pdf_pages’;
  // $cfg['Servers'][$i]['column_info'] = ‘pma_column_info’;
  // $cfg['Servers'][$i]['history'] = ‘pma_history’;
  // $cfg['Servers'][$i]['designer_coords'] = ‘pma_designer_coords’;
  去掉每行前面的//;
  c.$cfg['blowfish_secret'] = ”; |修改为| $cfg['blowfish_secret'] = ‘http’;
  d.$cfg['Servers'][$i]['controluser'] = ‘pma’; |把’pma’修改为你的帐号|
  e.$cfg['Servers'][$i]['controlpass'] = ‘pmapass’; |把’pmapass设置为你的mysql登录密码|
  f. $cfg['blowfish_secret'] = ”; | 添加短语密码例如:$cfg['blowfish_secret'] = ‘onohot’|
  参考网站:http://www.fengyihot.com/blog/?p=169

页: [1]
查看完整版本: CentOS上yum安装Apache套件