标签:rest star pen 文件中 lib apache exchange 安装mysql md5
1.
http://www.linuxidc.com/Linux/2016-10/136327.htm
2.
安装好Ubuntu16.04后,是一台空白的Ubuntu。我的目的是搭建LAMP环境,顺便搭一个Python Django环境。
管理员给分配了一个静态IP,所以还需要进一步配置网络环境
配置DNS:右上角网络连接->编辑链接->有线连接1->IPv4设置->DNS服务器:202.112.80.106->保存
登陆网关:对于校园网用户来说,登陆网关才能访问外网
测试:
ping www.baidu.com
sudo passwd
切换到root用户:
su
或su -
或su root
切换到普通用户:
su 用户名
或logout
sudo apt-get update
源保存的文件为:
/etc/apt/sources.list
sudo apt-get install openssh-server
查看状态:
service ssh status/start/stop/restart
或:
/etc/init.d/ssh status/start/stop/retsrt
实际上,service命令就是执行/etc/init.d脚本,二者功能是一样的
sudo apt-get install vim
sudo apt-get install tree
sudo apt-get install git
sudo apt-get install apache2
测试: 浏览器访问
http://Ubuntu的IP
,出现It Works!网页。查看状态:
service apache2 status/start/stop/restart
Web目录:
/var/www
安装目录:
/etc/apache2/
全局配置:
/etc/apache2/apache2.conf
监听端口:
/etc/apache2/ports.conf
虚拟主机:
/etc/apache2/sites-enabled/000-default.conf
sudo apt-get install mysql-server mysql-client
测试:
mysql -u root -p
查看状态:
service mysql status/start/stop/retart
查看监听端口的情况:
netstat -tunpl
或netstat -tap
sudo apt-get install php7.0
测试:
php7.0 -v
sudo apt-get install libapache2-mod-php7.0
sudo apt-get install php7.0-mysql
重启服务
service apache2 restart
service mysql restart
测试Apache能否解析PHP
vim /var/www/html/phpinfo.php
文件中写:
<?php echo phpinfo();?>
浏览器访问:
http://ubuntu地址/phpinfo.php
,出现PHP Version网页
sudo chmod 777 /var/www
sudo apt-get install phpmyadmin
安装:选择apache2,点击确定。下一步选择是要配置数据库,并输入密码。
创建phpMyAdmin快捷方式:
sudo ln -s /usr/share/phpmyadmin /var/www/html
启用Apache
mod_rewrite
模块:sudo a2enmod rewrite
重启服务:
service php7.0-fpm restart
service apache2 restart
测试:浏览器访问:
http://ubuntu地址/phpmyadmin
vim /etc/apache2/apache2.conf
添加:
AddType application/x-httpd-php .php .htm .html
AddDefaultCharset UTF-8
重启Apache服务
sudo apt-get install python-pip
pip install django
测试:
import django
##3.MySQL-pythonpip install MySQL-python
测试:
import MySQLdb
错误:algorithm negotiation failed
解决:
修改sshd的配置文件:
vim /etc/ssh/sshd_config
在配置文件中添加:
Ciphers aes128-cbc,aes192-cbc,aes256-cbc,aes128-ctr,aes192-ctr,aes256-ctr,3des-cbc,arcfour128,arcfour256,arcfour,blowfish-cbc,cast128-cbc MACs hmac-md5,hmac-sha1,umac-64@openssh.com,hmac-ripemd160,hmac-sha1-96,hmac-md5-96 KexAlgorithms diffie-hellman-group1-sha1,diffie-hellman-group14-sha1,diffie-hellman-group-exchange-sha1,diffie-hellman-group-exchange-sha256,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group1-sha1,curve25519-sha256@libssh.org
重启sshd服务:
service ssh restart
Xshell:文件->属性->终端->编码->UTF-8>
Xftp:文件->属性->选项->选中使用UTF-8编码
错误:
下列软件包有未满足的依赖关系:
mysql-client : 依赖: mysql-client-5.5 但是它将不会被安装
mysql-server : 依赖: mysql-server-5.5 但是它将不会被安装
E: 无法修正错误,因为您要求某些软件包保持现状,就是它们破坏了软件包间的依赖关系。
解决:两种解决方法
使用Ubuntu自带的下载源,不要使用其他源(如网易)
手动安装
下载MySQL:
http://dev.mysql.com/downloads/mysql/
使用FTP工具上传到Ubuntu
解压:
tar -xvf mysql-server_5.7.13-1ubuntu16.04_i386.deb-bundle.tar
安装:
sudo dpkg -i libmysqlclient20_5.7.15-1ubuntu16.04_amd64.deb libmysqlclient-dev_5.7.15-1ubuntu16.04_amd64.deb libmysqld-dev_5.7.15-1ubuntu16.04_amd64.deb mysql-common_5.7.15-1ubuntu16.04_amd64.deb mysql-community-source_5.7.15-1ubuntu16.04_amd64.deb mysql-community-client_5.7.15-1ubuntu16.04_amd64.deb mysql-client_5.7.15-1ubuntu16.04_amd64.deb mysql-community-server_5.7.15-1ubuntu16.04_amd64.deb mysql-server_5.7.15-1ubuntu16.04_amd64.deb
解决:可改用如下命令:
sudo apt-get install python-pip python-dev build-essential
sudo pip install --upgrade pip
sudo pip install --upgrade virtualenv
解决
设置超时时间:
sudo pip install django --default-timeout 100
或者使用其他下载源:
pip install web.py -i
错误:
EnvironmentError: mysql_config not found
解决:
sudo apt-get install libmysqld-dev
安装MySQL-python:
pip install MySQL-python
pip install --upgrade 库名
本文永久更新链接地址:http://www.linuxidc.com/Linux/2016-10/136327.htm
标签:rest star pen 文件中 lib apache exchange 安装mysql md5
原文地址:http://www.cnblogs.com/Study02/p/7509896.html