使用Ubuntu構建LAMP環境
创建用户
创建用户
# adduser nishide
Adding user `nishide' ...
Adding new group `nishide' (1001) ...
Adding new user `nishide' (1001) with group `nishide' ...
Creating home directory `/home/nishide' ...
Copying files from `/etc/skel' ...
Enter new UNIX password:
Retype new UNIX password:
passwd: password updated successfully
Changing the user information for nishide
Enter the new value, or press ENTER for the default
Full Name []:
Room Number []:
Work Phone []:
Home Phone []:
Other []:
Is the information correct? [Y/n]
给予创建的用户sudo权限。
# usermod -G sudo nishide
構建LAMP环境
只需要提供一种方式:
※ 不是使用apt-get,而是使用apptitude进行确认
将操作系统的软件包更新至最新版本。
# apt-get update -y
安装相关开发包。
# apt-get install openssl
Apache的安装
# apt-get install apache2 -y
MySQL的安装
# apt-get install -y mysql-server libapache2-mod-auth-mysql
安装PHP
# apt-get install -y php5 php5-mysql libapache2-mod-php5 php5-mcrypt php5-json
其他备注
initctl命令
# initctl restart ssh # 重新启动 ssh。