- 浏览: 32213 次
文章分类
最新评论
CENTOS下安装LAMP总结
CENTOS下安装LAMP总结
(一,mysql)
最近新的子网站上线,需要搭建服务器。在部署时,开始想复制老服务器的模式,连包也用一样的,但杯具的是包不全,导致后来东拼西凑错误百出,不得已重装了系统再进行配置。
在源码安装的时候由于记录不详细,导致配置错误,最后的解决方式是yum安装,总结源码安装和yum安装,前者灵活性高,但需要在每一步都详细记录,配置好关联路径;后者则是固定的编译参数+固定位置,会省事不少。
1,安装操作系统centos5.6
比较简单,超详细的图文教程见http://hi.baidu.com/eao110/blog/item/6fb6fed31ffcc1d3a8ec9a28.html
建议使用文本模式,毕竟是做服务器应用的,图形界面对维护来说帮助不大(尤其是在ssh下)。
另外,分区需要注意自己的应用(数据库、WEB)分布在哪个目录,则相应的调整好大小,免得到时候磁盘空间不够
2,安装完毕,下载所需要的包,搜索tar包的资源,找到地址后使用wget直接下载到本地目录,建议单独新建一个目录用来保存安装文件
cd /home
mkdir source
cd source
进入该目录后,输入wget http://xxxxxxxx/xxxx.tar.gz 即可从该地址获取包
3,下载完所有包,开始解压,tar命令很简单,概括来讲:
.tar.gz 后缀的,用tar zxvf 文件名
.tar.bz2后缀的,用tar jcvf 文件名
4,MYSQL安装,以5.0.77为例
安装需要的库
yum -y install ncurses ncurses-devel
#创建MySQL用户及用户组
groupadd mysql
useradd -g mysql -s /sbin/nologin mysql
#解压源码包
cd /home/source
tar zxvf mysql-5.0.77.tar.gz
#赋予解压文件夹mysql用户的可读权限
chown -R mysql:mysql mysql-5.0.77
#进入目录开始编译
cd mysql-5.0.77
#安装前检查是否有运行的mysql进程,杀之
ps -aef|grep mysql
kill -9 XXX
#开始安装,如果提示缺库则需先安装该库,一般会缺失多个
./configure --prefix=/usr/local/mysql --enable-assembler --with-mysqld-ldflags=-all-static --with-client-ldflags=-all-static --with-unix-socket-path=/usr/local/mysql/tmp/mysql.sock --with-mysqld-user=mysql --with-charset=utf8 --with-collation=utf8_general_ci --with-extra-charsets=all --without-debug --enable-assembler --with-innodb --localstatedir=/var/lib/mysql
#make && make install
make ZEND_EXTRA_LIBS='-liconv' && make install
./configure中的编译参数说明如下,可根据情况自己定制:
Installation directories:
--prefix=PREFIX install architecture-independent files in PREFIX
[/usr/local]
--exec-prefix=EPREFIX install architecture-dependent files in EPREFIX
[PREFIX]
By default, `make install' will install all the files in
`/usr/local/bin', `/usr/local/lib' etc. You can specify
an installation prefix other than `/usr/local' using `--prefix',
for instance `--prefix=$HOME'.
For better control, use the options below.
Fine tuning of the installation directories:
--bindir=DIR user executables [EPREFIX/bin]
--sbindir=DIR system admin executables [EPREFIX/sbin]
--libexecdir=DIR program executables [EPREFIX/libexec]
--sysconfdir=DIR read-only single-machine data [PREFIX/etc]
--sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com]
--localstatedir=DIR modifiable single-machine data [PREFIX/var]
--libdir=DIR object code libraries [EPREFIX/lib]
--includedir=DIR C header files [PREFIX/include]
--oldincludedir=DIR C header files for non-gcc [/usr/include]
--datarootdir=DIR read-only arch.-independent data root [PREFIX/share]
--datadir=DIR read-only architecture-independent data [DATAROOTDIR]
--infodir=DIR info documentation [DATAROOTDIR/info]
--localedir=DIR locale-dependent data [DATAROOTDIR/locale]
--mandir=DIR man documentation [DATAROOTDIR/man]
--docdir=DIR documentation root [DATAROOTDIR/doc/PACKAGE]
--htmldir=DIR html documentation [DOCDIR]
--dvidir=DIR dvi documentation [DOCDIR]
--pdfdir=DIR pdf documentation [DOCDIR]
--psdir=DIR ps documentation [DOCDIR]
Program names:
--program-prefix=PREFIX prepend PREFIX to installed program names
--program-suffix=SUFFIX append SUFFIX to installed program names
--program-transform-name=PROGRAM run sed PROGRAM on installed program names
System types:
--build=BUILD configure for building on BUILD [guessed]
--host=HOST cross-compile to build programs to run on HOST [BUILD]
--target=TARGET configure for building compilers for TARGET [HOST]
Optional Features:
--disable-option-checking ignore unrecognized --enable/--with options
--disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no)
--enable-FEATURE[=ARG] include FEATURE [ARG=yes]
--disable-dependency-tracking speeds up one-time build
--enable-dependency-tracking do not reject slow dependency extractors
--enable-shared[=PKGS] build shared libraries [default=yes]
--enable-static[=PKGS] build static libraries [default=yes]
--enable-fast-install[=PKGS]
optimize for fast installation [default=yes]
--disable-libtool-lock avoid locking (might break parallel builds)
--disable-community-features
Disable additional features provided by the user
community.
--disable-thread-safe-client
Compile the client without threads.
--enable-assembler Use assembler versions of some string
functions if available.
--enable-profiling Build a version with query profiling code (req.
community-features)
--enable-local-infile Enable LOAD DATA LOCAL INFILE (default: disabled)
--disable-grant-options Disables the use of --init-file, --skip-grant-tables and --bootstrap options
--disable-largefile Omit support for large files
Optional Packages:
--with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
--without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no)
--with-charset=CHARSET
Default character set, use one of:
binary
armscii8 ascii big5 cp1250 cp1251 cp1256 cp1257
cp850 cp852 cp866 cp932 dec8 eucjpms euckr gb2312 gbk geostd8
greek hebrew hp8 keybcs2 koi8r koi8u
latin1 latin2 latin5 latin7 macce macroman
sjis swe7 tis620 ucs2 ujis utf8
--with-collation=COLLATION
Default collation
--with-extra-charsets=CHARSET,CHARSET,...
Use charsets in addition to default (none, complex,
all, or a list selected from the above sets)
--without-uca Skip building of the national Unicode collations.
--with-system-type Set the system type, like "sun-solaris10"
--with-machine-type Set the machine type, like "powerpc"
--with-darwin-mwcc Use Metrowerks CodeWarrior wrappers on OS X/Darwin
--with-gnu-ld assume the C compiler uses GNU ld [default=no]
--with-pic try to use only PIC/non-PIC objects [default=use
both]
--with-tags[=TAGS] include additional configurations [automatic]
--with-other-libc=DIR Link against libc and other standard libraries
installed in the specified non-standard location
overriding default. Originally added to be able to
link against glibc 2.2 without making the user
upgrade the standard libc installation.
--with-server-suffix Append value to the version string.
--with-pthread Force use of pthread library.
--with-named-thread-libs=ARG
Use specified thread libraries instead of
those automatically found by configure.
--with-named-curses-libs=ARG
Use specified curses libraries instead of
those automatically found by configure.
--with-unix-socket-path=SOCKET
Where to put the unix-domain socket. SOCKET must be
an absolute file name.
--with-tcp-port=port-number
Which port to use for MySQL services (default 3306)
--with-mysqld-user=username
What user the mysqld daemon shall be run as.
--with-zlib-dir=no|bundled|DIR
Provide MySQL with a custom location of compression
library. Given DIR, zlib binary is assumed to be in
$DIR/lib and header files in $DIR/include.
--with-libwrap=DIR Compile in libwrap (tcp_wrappers) support
--with-pstack Use the pstack backtrace library
--with-debug Add debug code
--with-debug=full Add debug code (adds memory checker, very slow)
--with-error-inject Enable error injection in MySQL Server
--with-fast-mutexes Compile with fast mutexes (default is disabled)
--with-atomic-ops=rwlocks|smp|up
Implement atomic operations using pthread rwlocks or
atomic CPU instructions for multi-processor
(default) or uniprocessor configuration
--with-mysqld-ldflags Extra linking arguments for mysqld
--with-client-ldflags Extra linking arguments for clients
--with-mysqld-libs Extra libraries to link with for mysqld
--with-lib-ccflags Extra CC options for libraries
--with-low-memory Try to use less memory to compile to avoid
memory limitations.
--with-comment Comment about compilation environment.
--with-big-tables Support tables with more than 4 G rows even on 32
bit platforms
--with-max-indexes=N Sets the maximum number of indexes per table,
default 64
--with-ssl=DIR Include SSL support
--with-plugins=PLUGIN[[[,PLUGIN..]]]
Plugins to include in mysqld. (default is: none)
Must be a configuration name or a comma separated
list of plugins.
Available configurations are: none max max-no-ndb
all.
Available plugins are: partition daemon_example
ftexample archive blackhole csv example federated
heap innobase myisam myisammrg ndbcluster.
--without-plugin-PLUGIN Disable the named plugin from being built.
Otherwise, for plugins which are not selected for
inclusion in mysqld will be built dynamically (if
supported)
--with-plugin-PLUGIN Forces the named plugin to be linked into mysqld
statically.
--with-ndb-sci=DIR Provide MySQL with a custom location of sci library.
Given DIR, sci library is assumed to be in $DIR/lib
and header files in $DIR/include.
--with-ndb-test Include the NDB Cluster ndbapi test programs
--with-ndb-docs Include the NDB Cluster ndbapi and mgmapi documentation
--with-ndb-port Port for NDB Cluster management server
--with-ndb-port-base Base port for NDB Cluster transporters
--without-ndb-debug Disable special ndb debug features
--with-ndb-ccflags=CFLAGS
Extra CFLAGS for ndb compile
--without-ndb-binlog Disable ndb binlog
--without-server Only build the client.
--with-embedded-server Build the embedded server (libmysqld).
--without-query-cache Do not build query cache.
--without-geometry Do not build geometry-related parts.
--with-embedded-privilege-control
Build parts to check user's privileges.
Only affects embedded library.
--with-mysqlmanager Build the mysqlmanager binary: yes/no (default:
build if server is built.)
--without-docs Skip building of the documentation.
--without-man Skip building of the man pages.
--without-readline Use system readline instead of bundled copy.
--without-libedit Use system libedit instead of bundled copy.
仔细核对上述命令及参数,一些输入的错误会被configure脚本忽略,一定要仔细检查。用 && 连接符可以将几个命令进行连接,保证上一个命令完成后才执行下一个命令。这是检验命令正确运行的一个好方法。
如果你看到安装成功的提示,则说明mysql已正确编译 并安装。
5,在mysql安装目录下,ls –l | grep my-
出来的都是mysql的配置文件,按照需要拷贝其中一个到/etc下,重命名为my.cnf,mysql默认的配置文件即是/etc/my/cnf
6,修改数据目录的可写权限。因为当前用户运行mysql的后台程序可能没有这个目录的可写权限。
chmod 777 ./var –r
7,配置系统环境变量,使得可以直接执行mysql的程序
(1) /etc/profile的配置:
PATH=/usr/local/mysql/bin:$PATH
PATH=/usr/local/mysql/libexec:$PATH
export PATH
其中,/usr/local/mydql/bin是mysql主要的可执行程序的目录,而libexec则用来存放mysql后台主程序mysqld
(2).bashrc的配置:
set PATH=/usr/local/mysql/bin:$PATH
set PATH=/usr/local/mysql/libexec:$PATH
export PATH
注意.bashrc里面要加set。配置完成后,重新登录生效。
8,初始化数据库
mysql_install_db
9,启动mysqld
service mysqld start
10,进入mysql
# mysql -uroot -p
注意对mysql权限的操作,如操作mysql.user表,则需要执行以下语句来生效(或者重启)
mysql> flush privileges;
相关推荐
### 腾讯云服务器Linux CentOS 7.2 yum安装LAMP环境 #### 知识点一:腾讯云服务器租赁与基本配置 - **腾讯云服务器租赁**:首先需要注册并登录腾讯云平台,选择合适的服务器配置进行租赁。文中提到作者选择了...
这个教程自己已经在centos5.5上一个个试出来的 包括lamp安装过程出现的问题都有记录,安装的步骤参考与别人的经验,我只是做了个总结及问题归总,用该文档我已经装好了好多台服务器了。 该文档包括apache的安装,php...
在CentOS 7环境下从源码安装LAMP环境,主要包括安装Apache、PHP和MySQL。LAMP环境是构建动态网站的重要组成部分,其中Apache作为Web服务器,PHP作为服务器端脚本语言,MySQL作为数据库管理系统。 ### Apache安装...
### CentOS 6.8 搭建 LAMP 环境及配置 #### 一、简介 LAMP 是一个开放源代码的Web平台,由 Linux、Apache、MySQL 和 PHP 四个部分组成,广泛用于互联网应用程序开发。本文将详细介绍如何在 CentOS 6.8 系统上搭建 ...
### Centos下LAMP环境安装知识点详解 #### 一、LAMP环境概述 LAMP(Linux、Apache、MySQL、PHP)是一种常用的网站服务器环境配置方式。其中,Linux 是操作系统;Apache 是网页服务器软件;MySQL 是数据库管理系统...
### 在CentOS 6.0上安装LAMP服务器 #### 一、简介 LAMP(Linux、Apache、MySQL、PHP)是一种流行的开源Web服务解决方案,它由四个主要部分组成: - **Linux**:操作系统。 - **Apache**:HTTP服务器。 - **MySQL*...
【安装CentOS下的LAMP环境】 在Linux操作系统中,LAMP(Linux、Apache、MySQL、PHP)是一种常见的Web服务器组合,广泛用于搭建网站和应用。这篇教程将介绍如何在CentOS系统上自动安装LAMP环境。 首先,我们需要了解...
总结,CentOS 5.5下安装LAMP环境的过程主要包括安装Apache、MySQL和PHP,以及配置和测试这些组件。通过以上步骤,你可以成功创建一个基础的Web服务器环境,为后续的网站开发和部署打下坚实的基础。但需要注意的是,...
本文将详细介绍如何在CentOS环境下安装与配置LAMP环境,并提供一些常见问题的解决方案。 #### 二、准备篇:防火墙与SELINUX配置 ##### 1. 配置防火墙 为了确保Web服务能够正常运行,我们需要开放Apache(HTTP服务...
CentOS 搭建 LAMP 环境 在本文中,我们将详细介绍如何在 CentOS 5.5 上搭建 LAMP(Linux、Apache、Mysql、PHP)环境。LAMP 是一个流行的 Web 开发架构,广泛应用于 Web 应用程序的开发和部署。 一、换源和更新 yum...
CentOS操作系统安装及LAMP搭建教程 本教程将指导读者完成 CentOS 操作系统的安装和 LAMP 环境的搭建,涵盖从下载 CentOS 操作系统到安装和配置 LAMP 环境的整个过程。 一、CentOS 操作系统安装 1. 下载 CentOS ...
通过以上步骤,您可以在CentOS 5.4环境下成功搭建起一个基本的LAMP环境。这种环境非常适合初学者入门使用,也可以满足大多数Web开发的基本需求。不过需要注意的是,随着技术的发展,当前更推荐使用更高版本的系统和...
### CentOS 5 下 LAMP 环境搭建与配置详解 #### 一、环境准备与基础知识 在开始之前,我们先来了解一下 LAMP 架构的基本概念:LAMP 是一个开源软件组合,由 Linux(操作系统)、Apache(Web 服务器)、MySQL...
总结,这个个人珍藏版的CentOS 6 LAMP部署文档详尽地概述了每个组件的安装过程,从准备依赖到测试完整的环境。遵循这些步骤,开发者可以在自己的服务器上快速搭建一个功能完备的Web服务器环境,用于开发和托管基于...
通过以上步骤,您已经成功在 CentOS 5.x 系统上安装了 LAMP 环境。接下来可以根据实际需求进一步优化和扩展该环境,例如安装额外的 PHP 扩展、调整 MySQL 的配置等。此外,为了提高系统的安全性,还应定期更新软件...
总结,搭建CentOS 6.4上的LAMP环境涉及Linux系统管理,包括软件安装、服务启动与配置,以及PHP和MySQL的集成。这个过程对于新手来说可能有些复杂,但随着经验的积累,你会逐渐熟悉这些基本操作。记得在遇到问题时...
### CentOS搭建LAMP架构知识点...本文详细介绍了如何在CentOS环境下搭建LAMP架构,包括获取软件包、安装编译工具、具体安装步骤及测试方法。通过这些步骤,您可以构建一个稳定的Web服务器环境,用于后续的Web应用开发。
### CentOS 6.5 安装配置 LAMP 服务器 (Apache+PHP5+MySQL) 的详细步骤 在本文中,我们将详细介绍如何在 CentOS 6.5 操作系统上搭建一个完整的 LAMP(Linux、Apache、MySQL 和 PHP)服务器环境。LAMP 是一种流行的...
### CentOS 6.6 安装配置 LAMP 服务器 (Apache+PHP5+MySQL) 知识点详解 #### 一、准备工作与环境配置 **1. 防火墙配置** - **目的**: 允许HTTP (80端口) 和 MySQL (3306端口) 的流量通过防火墙。 - **步骤**: - ...