如题所说,既然是嵌入GA追踪代码,那实际上最好上线之前就嵌入,那么怎么嵌入呢?首先你肯定要注册GA啦,直接gmail就可以了。然后在GA页面选择登入进入主页面。进入后会提示你一步一步操作。
首先建立信息,填入名称和你的域名
之后点击确定,会自动生成一段Js代码,然后注意,要把这段代码放在
标签内就可以了。
到这里其实嵌入代码就算是完成了,还有很多功能可以在GA上玩一玩。
然后讲如何上线,这里前提你已经全部开发好了所有的web项目代码。
这里上线就用阿里云服务器,正好手上有,其实可以用速云轻云之类的产品也是不错的。
服务器是ubuntu的系统,可能大多数会使用centos或者深度的系统,但是懒得换了,就这样吧,一样用。你用centos或者深度也是一样操作,知是一些细节地方不大一样,遇到不会的google吧。
下面一步一步部署。
1. 安装python3.6
sudo apt-get install python3
2. mysql
安装
sudo apt-get install mysql-server
设置bind-ip
vim /etc/mysql/my.cnf
找到bind-address可以改为0.0.0.0,这恶主要是方便你用工具管理数据库
bind-address = 0.0.0.0
然后进入数据库可以配置
GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY '你的密码' WITH GRANT OPTION;
这个命令是权限赋值命令,为了简单实用,我把所有的权限都给赋值,*.*其实是一个正则表达式,表示所有的表都要赋权限,这个权限是通过root用户连接过来,%代表所有的外部ip,这里也可以指明某一个ip,就是任何的ip只要通过root用户(后面IDENTIFIED BY '你的密码'意思是root的密码为你自己设置的登录密码)你都可以访问所有表
3. 安装nginx
sudo apt-get nginx
4. 配置虚拟环境
No1.安装virtualenv
virtualenv 是一个创建隔绝的Python环境的 工具。virtualenv创建一个包含所有必要的可执行文件的文件夹,用来使用Python工程所需的包。
通过pip安装virtualenv(pip安装:sudo apt-get python-pip):
$ pip install virtualenv
测试你的安装
$ virtualenv --version
No2.安装virtualenvwrapper
$ pip install virtualenvwrapper(权限报错就加sudo)
这里如果你报错,类似这样子的。
Traceback (most recent call last):
File "", line 1, in
File "/tmp/pip-build-6hblrn57/virtualenvwrapper/setup.py", line 7, in
pbr=True,
File "/usr/lib/python3.5/distutils/core.py", line 108, in setup
_setup_distribution = dist = klass(attrs)
File "/usr/lib/python3/dist-packages/setuptools/dist.py", line 269, in __init__
self.fetch_build_eggs(attrs['setup_requires'])
File "/usr/lib/python3/dist-packages/setuptools/dist.py", line 313, in fetch_build_eggs
replace_conflicting=True,
File "/usr/lib/python3/dist-packages/pkg_resources/__init__.py", line 826, in resolve
。。。。。。。。。。。。。。。。。。
大致类似上面这种。
你可以这样尝试。
sudo pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pbr
sudo pip install -i https://pypi.tuna.tsinghua.edu.cn/simple--no-deps stevedore
sudo pip install -i https://pypi.tuna.tsinghua.edu.cn/simple--no-deps virtualenvwrapper
如果上面的尝试报这样的错。
Could not find a version that satisfies the requirement virtualenvwrapper (from versions: )
No matching distribution found for virtualenvwrapper
配置virtualenvwrapper
$ sudo find / -name virtualenvwrapper.sh
执行完为显示出virtualenvwrapper.sh的路径
把virtualenvwrapper.sh的路径复制下来
然后运行下面的命令进入bashrc
$ vim ~/.bashrc
在bashrc文件中加入下面两行
export WORKON_HOME=$HOME/.virtualenvs
source /usr/local/bin/virtualenvwrapper.sh
保存文件并且退出(vim保存退出 按esc,输入:wp 回车,ctrl+z直接退出)
然后输入命令
$ source ~/.bashrc
这里有可能有的人会报错。大概是这样的。
/usr/bin/python: No module named virtualenvwrapper
virtualenvwrapper.sh: There was a problem running the initialization hooks.
If Python could not import the module virtualenvwrapper.hook_loader,
check that virtualenvwrapper has been installed for
VIRTUALENVWRAPPER_PYTHON=/usr/bin/python and that PATH is
set properly.
这样的话你要检查一下,你是不是安装的python3,并且你安装virtualenv用的pip3安装的?如果是的,请你在bash文件加上这一句
export VIRTUALENVWRAPPER_PYTHON=/usr/local/bin/python3
python3的路径可能有的人时usr/bin/python3,按照自己的填写上去。
创建虚拟环境
python3环境的创建
$ mkvirtualenv -p /usr/bin/python3 环境名称
python2环境的创建
$ mkvirtualenv 环境名称
进入虚拟环境
$ workon 环境名称
5. 在虚拟环境中配置你的项目所需要的环境安装包
我们可以通过 pip freeze > requirements.txt 将本地的虚拟环境安装包相信信息导出来
然后将requirements.txt文件上传到服务器之后运行:
pip install -r requirements.txt
安装依赖包
我这里是python+django的web项目并且通过nginx+uwsgi部署上线,我列出安装包:
注意:这里面安装mysqlclient可能会有坑,最好先安装下面的包
sudo apt-get install libmysqlclient-dev
6. 配置nginx
在项目目录新建uc_nginx.conf
# the upstream component nginx needs to connect to
upstream django {
# server unix:///path/to/your/mysite/mysite.sock; # for a file socket
server 127.0.0.1:8000 www.xxxx.com; # for a web port socket (we'll use this first)
}
# configuration of the server
server {
# the port your site will be served on
listen 80;
# the domain name it will serve for
server_name 你的ip地址 ; # substitute your machine's IP address or FQDN
charset utf-8;
# max upload size
client_max_body_size 75M; # adjust to taste
# Django media
location /media {
alias 你的media目录; # 指向django的media目录
}
location /static {
alias 你的static目录; # 指向django的static目录
}
# Finally, send all non-media requests to the Django server.
location / {
uwsgi_pass django;
include uwsgi_params; # the uwsgi_params file you installed
}
}
将该配置文件加入到nginx的启动配置文件中
scp uc_nginx.conf /etc/nginx/conf.d/
拉取所有需要的static file 到同一个目录
在django的setting文件中,添加下面一行内容:
STATIC_ROOT = os.path.join(BASE_DIR, "static/")
运行命令
python manage.py collectstatic
9. 运行nginx
server nginx start
10. 通过配置文件启动uwsgi
新建uwsgi.ini 配置文件, 内容如下:
# mysite_uwsgi.ini file
[uwsgi]
# Django-related settings
# the base directory (full path)
chdir = /home/bobby/Projects/project
# Django's wsgi file
module = project.wsgi
# the virtualenv (full path)
# process-related settings
# master
master = true
# maximum number of worker processes
processes = 10
# the socket (use the full path to be safe
socket = 127.0.0.1:8000
# ... with appropriate permissions - may be needed
# chmod-socket = 664
# clear environment on exit
vacuum = true
virtualenv = xxx/xxx/.virtualenvs/xxx
注:
chdir: 表示需要操作的目录,也就是项目的目录
module: wsgi文件的路径
processes: 进程数
virtualenv:虚拟环境的目录
uwsgi -i xxxx/xxx/conf/uwsgi.ini &
访问
好了这样就可以正常去访问你的地址了!
刚刚我们有嵌入了GA的代码,那么你上线GA追踪代码就已经在运行了,那就打开GA看看啥情况吧。
看到没,他会向你展示网站运作情况,很方便。
左边还有很多其他的项目可自行查看。
好了,到这里就写完了。
----------------------------------------------------------------------------