- 浏览: 457720 次
- 性别:
- 来自: 长沙
文章分类
最新评论
-
baijiazi521:
报压缩损坏的解决方案!!!!!!!!!!!!是因为默认的第二个 ...
web services cxf 视频教程 -
李涤尘:
写得太好了。必须顶一个
oracle触发器使用 -
359126613:
你要是在s:Panel 加上title他也不会显示。。。
flex4 创建右键菜单的bug -
BenBen_1989:
[url]web services cxf 视频教程[/url ...
web services cxf 视频教程 -
tengyue5i5j:
楼主帮看下 关于jaxb的两个压缩包都下了 就是解压缺少文件 ...
web services cxf 视频教程
网上的一些文章都已经比较老了,现在版本高了之后,其实配置是很省力的(不考虑什么负载的话)
分享全过程,出了文中提到的安装epel rpmfushion 源指令不同外,其他的过程也适用与Centos 5
1.安装CentOS 6 ,可以选择最小安装,也可以安装桌面
2.升级系统
yum update |
3.安装mysql,并设置mysql开机自启动,同时启动mysql
yum install mysql |
yum install mysql-server |
chkconfig --levels 35 mysqld on |
service mysqld start |
4.配置mysql的root密码
mysql_secure_installation |
Enter current password for root (enter for none): ( 回车)
OK, successfully used password, moving on...
Setting the root password ensures that nobody can log into the MySQL
root user without the proper authorisation.
Set root password? [Y/n] (Y)
New password: (123456)
Re-enter new password: (123456)
Password updated successfully!
Reloading privilege tables..
... Success!
By default, a MySQL installation has an anonymous user, allowing anyone
to log into MySQL without having to have a user account created for
them. This is intended only for testing, and to make the installation
go a bit smoother. You should remove them before moving into a
production environment.
Remove anonymous users? [Y/n]
(是否移出数据库的默认帐户,如果移出,那么在终端中直接输入mysql是会提示连接错误的)Y
Normally, root should only be allowed to connect from 'localhost'. This
ensures that someone cannot guess at the root password from the network.
Disallow root login remotely? [Y/n]
(是否禁止root的远程登录)Y
By default, MySQL comes with a database named 'test' that anyone can
access. This is also intended only for testing, and should be removed
before moving into a production environment.
Remove test database and access to it? [Y/n] Y
Reload privilege tables now? [Y/n] Y
5.安装apache,并设置开机启动
yum install httpd |
chkconfig --levels 35 httpd on |
service httpd start |
这时候可以测试apache是否正常工作
直接浏览器访问localhost应该没问题,但是如果别的机子访问不了的话,是因为防火墙的关系,配置防火墙
(后面的ssl还会有这个问题的)
6.安装php
yum install php |
|
yum install php-mysql php-gd php-imap php-ldap php-odbc php-pear php-xml php-xmlrpc |
这个时候php就安装完成拉,写个脚本测试一下
vi /var/www/html/info.php |
输入
<?php |
phpinfo();?> |
访问localhost/info.php即可~
7.安装phpMyAdmin
首先先给系统安装epel 和rpmfushion两个软件大仓库
如果是centos 5 的话执行下面
接着安装起来就很方便拉,~根本不需要去下载就可以获得最新的版本
yum install phpmyadmin |
安装完成后还需要配置一下访问权限,使得出了本机外,其他机子也能访问phpMyAdmin
vi /etc/httpd/conf.d/phpMyAdmin.conf |
找到两个directory的权限设置,Allow from 改成All
<Directory /usr/share/phpMyAdmin/>
Order Deny,Allow
Deny from All
Allow from 127.0.0.1
Allow from All
</Directory>
<Directory /usr/share/phpMyAdmin/setup/>
Order Deny,Allow
Deny from All
Allow from 127.0.0.1
Allow from All
</Directory>
重启服务器
service httpd restart |
测试localhost/phpMyAdmin
用户名密码:root 123456
OK~ LAMP搭建完毕,
8.搭建SSL,让apache支持https
yum install mod_ssl |
其实安装完这个模块后,重启完apache 就可以用https://localhost测试了,因为他创建了默认的证书
在/etc/pki/tls下
当然我们也可以用openssl创建自己的证书
yum install openssl |
生成证书文件
创建一个rsa私钥,文件名为server.key
openssl genrsa -out server.key 1024 |
Generating RSA private key, 1024 bit long modulus
............++++++
............++++++
e is 65537 (0x10001)
用 server.key 生成证书签署请求 CSR
openssl req -new -key server.key -out server.csr |
Country Name:两个字母的国家代号
State or Province Name:省份名称
Locality Name:城市名称
Organization Name:公司名称
Organizational Unit Name:部门名称
Common Name:你的姓名
Email Address:地址
至于 'extra' attributes 不用输入.直接回车
生成证书CRT文件server.crt。
openssl x509 -days 365 -req -in server.csr -signkey server.key -out server.crt |
修改ssl.conf指定我们自己生成的证书
vi /etc/httpd/conf.d/ssl.conf |
找到如下位置,修改路径
# Server Certificate:
# Point SSLCertificateFile at a PEM encoded certificate. If
# the certificate is encrypted, then you will be prompted for a
# pass phrase. Note that a kill -HUP will prompt again. A new
# certificate can be generated using the genkey(1) command.
SSLCertificateFile /etc/pki/tls/certs/localhost.crt
# Server Private Key:
# If the key is not combined with the certificate, use this
# directive to point at the key file. Keep in mind that if
# you've both a RSA and a DSA private key you can configure
# both in parallel (to also allow the use of DSA ciphers, etc.)
SSLCertificateKeyFile /etc/pki/tls/private/localhost.key
OK
service httpd restart |
一切都搞定拉~~
整个过程我们不需要修改/etc/httpd/conf/httpd.conf 这就是版本高了的好处阿~
发表评论
-
转CentOS下修改httpd.conf开启gzip压缩传输
2014-08-13 10:24 729修改httpd.conf开启gzip压缩传输,本文在Cent ... -
百度与谷哥坐标互转
2014-08-12 10:44 0/*SELECT TEMP.* FROM (select P ... -
Linux中对MySQL优化
2014-07-29 19:16 921要求: MySQL数据库管理与维护 1、熟悉Linux上安 ... -
linux下mysql出现只读错误
2014-07-23 11:45 1363问题解决:Linux下MySql出现#1036 – Tabl ... -
centos安装php的mcrypt扩展
2014-07-23 11:43 676博客:http://ju.outofmemory.cn/en ... -
Apache日志分析常用Shell命令
2014-07-15 16:22 8551、查看apache进程: ps aux | grep ... -
Linux下crontab命令的用法
2014-06-05 16:39 1011cron来源于希腊单词chronos(意为“时间”),是li ... -
php怎样把类似价格“20.00元”里的.00替换掉
2014-01-07 16:33 807$price = "20.00"; $p ... -
Apache Rewrite 规则详解(转)
2014-01-03 09:39 780在开篇之前:我想说这篇文章其实是我刚刚接触Rewrite的时 ... -
Linux SVN安装
2013-12-25 16:23 1034下载SVN、依赖包以及apache安装文件 ... -
linux服务器状态、性能相关命令
2013-12-25 16:20 859---------查看Linux服务器CPU详细情况---- ... -
file_get_contents无法请求https连接的解决方法
2013-12-04 16:50 1015PHP.ini默认配置下,用file_get_content ... -
php中mysqli获取结果集
2013-11-04 17:52 4042$host = 'localhost'; $user = ... -
php 生成二维条形码
2013-09-23 11:24 764<?php function UPCAbarc ... -
处理session跨域几种的方案
2013-09-23 11:11 32984常用跨域共用session的是登录模块,我相信很多开发的朋友 ... -
php过滤请求中数据方法
2013-09-22 16:09 0<?php //get $getfilter = ... -
php表单验证类
2013-09-22 15:31 0<?php //表单验证类 class Check ... -
php 公用函数
2013-09-22 15:29 0<?php //数据过滤函数库 /* ... -
开源框架canphp中mysql与mysqli的连接类
2013-09-22 15:20 1139<?php class cpMysqli { p ... -
php 网址解析
2013-09-18 12:04 856/* 'URL_REWRITE_ON' => ...
相关推荐
为了优化Apache的性能和安全性,可以安装一些额外的扩展,如Apache的手册、SSL支持、Perl模块以及MySQL认证模块: ``` sudo yum -y install httpd-manual mod_ssl mod_perl mod_auth_mysql ``` 7. **重启服务**...
CentOS 7.1 + Apache + MySQL + PHP + ZendGuardLoader 配置教程 本文档主要介绍如何在 CentOS 7.1 操作系统上配置 Apache、MySQL、PHP 和 ZendGuardLoader 等环境。下面是详细的配置步骤和知识点: 1. 配置固定 ...
在本文档中,我们详细介绍了如何在 CentOS 6.4 系统上搭建 Apache、MySQL 和 PHP(通常称为 LAMP 环境)的基础步骤。这个环境是许多 Web 应用程序的基础,尤其是那些基于 PHP 开发的项目。 首先,我们安装 MySQL ...
【从零开始部署CentOS7+Apache+PHP+MariaDB+HTTPS】 这篇文章将引导你逐步完成在CentOS7系统上搭建一个基于Apache服务器、PHP处理脚本语言、MariaDB数据库服务以及启用HTTPS安全协议的过程。以下是详细的步骤: 1....
在配置Linux服务器以支持LAMP(Linux, Apache, MySQL, PHP)环境时,我们需要进行一系列的准备工作和安装步骤。以下是一个详细的步骤指南: **一、准备工作** 1. **安装编译工具** 在Linux系统中,通常使用GCC和...
6. 重启Apache,使用命令`sudo systemctl restart apache2`(Ubuntu)或`systemctl restart httpd`(CentOS)。 7. 安装MySQLfront,下载并按照官方指南进行安装,通常包括解压、配置和启动程序。 8. 测试LAMP环境,...
CentOS 7 安装 Zabbix 4.4+PHP 7.1+MySQL 5.7 CentOS 7 安装 Zabbix 4.4+PHP 7.1+MySQL 5.7 是一篇详细的安装指南,旨在帮助用户在 CentOS 7 环境下安装 Zabbix 4.4、PHP 7.1 和 MySQL 5.7。 在本文中,我们将逐步...
在本教程中,我们将深入探讨如何在CentOS7操作系统上配置一个完整的Web服务器环境,包括Apache Web服务器、PHP7和MySQL5.7数据库。这个环境是许多网站和应用程序的基础,对于开发者和系统管理员来说,了解如何正确...
在给定的文件信息中,我们探讨了在CentOS 4.4环境下通过源码编译方式安装Apache、PHP和MySQL的过程。以下是基于文件提供的信息,深入解析与扩展的知识点: ### 一、系统环境 #### Linux版本及内核 在进行任何软件...
- 确保已经安装了PHP、MySQL以及相关Web服务器(如Apache)。 ##### 6.2 安装Roundcubemail - Roundcube是一款功能丰富的Web邮件客户端。 - 安装步骤:下载源码包,解压后通过浏览器访问安装页面。 ##### 6.3 ...
在本文中,我们将深入探讨如何在CentOS 6.0操作系统上搭建一个基于Apache 2.4、PHP 5.4.7和MySQL 5.5.27的Web服务器环境。这个环境对于开发和部署基于LAMP(Linux、Apache、MySQL、PHP)的应用程序至关重要。 首先...
**负载均衡**:在 LAMP 基础上实现负载均衡,通常涉及到使用负载均衡器,如 Nginx 或 HAProxy,它们可以将来自用户的请求分发到多个后端服务器(运行着 Apache 和 PHP 的 CentOS 系统),以平衡负载,提高服务响应...
### Linux+Nginx+Mysql+Php安装教程 #### Linux 安装步骤详解 ##### 1. 开始安装过程 - **选择安装类型**:在安装初始界面选择 "Install or upgrade an existing system",系统将自动运行后续安装流程。 ##### 2...
Linux、Apache、MySQL和PHP(通常称为LAMP)是一个经典的开源软件组合,用于构建功能强大的Web应用程序和动态网站。这个组合充分利用了各自组件的优势,提供了一个稳定、灵活且成本效益高的平台。 首先,Linux是...
接着,安装必要的依赖包,包括Apache或Nginx(这里选择Nginx)、PHP、以及MySQL/MariaDB: ``` sudo yum install epel-release -y sudo yum install nginx php ...