nginx改tengine,gitlab重装操作步骤

简介:
  1. nginx改tengine

yum -y install gcc gcc-c++ gd gd-devel

cd libunwind-1.1

LAGS=-fPIC ./configure --prefix=/usr/local

make LAGS=-fPIC

make LAGS=-fPIC install

cd gperftools-2.0

./configure --prefix=/usr/local

make && make install

上面两个包需要重新编译

拷贝原来安装的tengine

ls /opt/src,复制到这台机器

1
2
3
gperftools-2.0  nginx-accesskey-2.0.3   ngx-fancyindex  pcre-8.35      zlib-1.2.8
libunwind-1.1   nginx_tcp_proxy_module  openssl-1.0.0o  ruby-2.2.3
nginx-1.6.2     ngx_cache_purge-2.2     openssl-1.0.2   tengine-2.1.2

cd /usr/local/

tar cvzf tengine.tar.gz openssl pcre zlib tengine 需要的一些依赖包

最后一步

ln -s /usr/local/lib/libunwind.so /lib64/libunwind.so.8

ln -s /usr/local/lib/libprofiler.so.0 /lib64

启动

/etc/init.d/tengine start


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
. /nginx  -V
loaded modules:
     ngx_core_module (static)
     ngx_errlog_module (static)
     ngx_conf_module (static)
     ngx_dso_module (static)
     ngx_syslog_module (static)
     ngx_events_module (static)
     ngx_event_core_module (static)
     ngx_epoll_module (static)
     ngx_poll_module (static)
     ngx_tcp_module (static)
     ngx_tcp_core_module (static)
     ngx_tcp_upstream_module (static)
     ngx_tcp_proxy_module (static)
     ngx_tcp_websocket_module (static)
     ngx_tcp_upstream_ip_hash_module (static)
     ngx_tcp_upstream_busyness_module (static)
     ngx_tcp_ssl_module (static)
     ngx_procs_module (static)
     ngx_proc_core_module (static)
     ngx_openssl_module (static)
     ngx_regex_module (static)
     ngx_http_module (static)
     ngx_http_core_module (static)
     ngx_http_log_module (static)
     ngx_http_upstream_module (static)
     ngx_http_static_module (static)
     ngx_http_gzip_static_module (static)
     ngx_http_autoindex_module (static)
     ngx_http_fancyindex_module (static)
     ngx_http_index_module (static)
     ngx_http_access_module (shared, 3.1)
     ngx_http_limit_req_module (shared, 3.1)
     ngx_http_auth_basic_module (static)
     ngx_http_limit_conn_module (shared, 3.1)
     ngx_http_realip_module (static)
     ngx_http_geo_module (static)
     ngx_http_map_module (static)
     ngx_http_split_clients_module (static)
     ngx_http_referer_module (static)
     ngx_http_ssl_module (static)
     ngx_http_proxy_module (static)
     ngx_http_fastcgi_module (static)
     ngx_http_uwsgi_module (static)
     ngx_http_scgi_module (static)
     ngx_http_empty_gif_module (static)
     ngx_http_browser_module (static)
     ngx_http_concat_module (shared, 3.1)
     ngx_http_user_agent_module (static)
     ngx_http_rewrite_module (shared, 3.1)
     ngx_http_sysguard_module (static)
     ngx_http_upstream_consistent_hash_module (static)
     ngx_http_upstream_check_module (static)
     ngx_http_upstream_keepalive_module (static)
     ngx_http_upstream_dynamic_module (static)
     ngx_http_stub_status_module (static)
     ngx_http_accesskey_module (static)
     ngx_tcp_upstream_check_status_module (static)
     ngx_http_write_filter_module (static)
     ngx_http_header_filter_module (static)
     ngx_http_chunked_filter_module (static)
     ngx_http_range_header_filter_module (static)
     ngx_http_gzip_filter_module (static)
     ngx_http_postpone_filter_module (static)
     ngx_http_ssi_filter_module (static)
     ngx_http_charset_filter_module (static)
     ngx_http_image_filter_module (static)
     ngx_http_sub_filter_module (static)
     ngx_http_userid_filter_module (static)
     ngx_http_trim_filter_module (shared, 3.1)
     ngx_http_footer_filter_module (static)
     ngx_http_upstream_session_sticky_module (shared, 3.1)
     ngx_http_headers_filter_module (static)
     ngx_http_reqstat_module (static)
     ngx_http_cache_purge_module (shared, 3.1)
     ngx_http_copy_filter_module (static)
     ngx_http_range_body_filter_module (static)
     ngx_http_not_modified_filter_module (static)
     ngx_google_perftools_module (static)


gitlab重装操作步骤

参考 http://lansgg.blog.51cto.com/5675165/1760578

要注意的是,gitlab有个.gitlab_shell_secret,gitlab-shell也有一个,如果你查看gitlab-shell.log,报401错误,那么有可能是这两个文件不一样,实际上就是token。每次安装都会生成,如果你直接cp,以前的和现在安装的就会不一样,我碰到过。

重装的话,参考上面的文档

1.注意gitlab的版本,gitlab安装其实就是在安装ruby的一些依赖包,要保证每一步都是正确的

2.redis最好改成127.0.0.1或则机器ip

3.需要以前的gitlab mysql备份数据库,然后导入到这台上

4.如果tenginx设置端口的,不是默认的80的话,两个config.xml的host都要修改



本文转自 liqius 51CTO博客,原文链接:http://blog.51cto.com/szgb17/1789082,如需转载请自行联系原作者

相关文章
|
1月前
|
tengine 关系型数据库 MySQL
Tengine、Nginx安装MySQL数据库命令教程
本指南详细介绍了在Linux系统上安装与配置MySQL数据库的步骤。首先通过下载并安装MySQL社区版本,接着启动MySQL服务,使用`systemctl start mysqld.service`命令。若启动失败,可尝试使用`sudo /etc/init.d/mysqld start`。利用`systemctl status mysqld.service`检查MySQL的服务状态,确保其处于运行中。通过日志文件获取初始密码,使用该密码登录数据库,并按要求更改初始密码以增强安全性。随后创建一个名为`tengine`的数据库,最后验证数据库创建是否成功以及完成整个设置流程。
|
1月前
|
tengine 应用服务中间件 Linux
Tengine、Nginx安装PHP命令教程
要在阿里云Linux上安装PHP,请先更新YUM源并启用PHP 8.0仓库,然后安装PHP及相关扩展。通过`php -v`命令验证安装成功后,需修改Nginx配置文件以支持PHP,并重启服务。最后,创建`phpinfo.php`文件测试安装是否成功。对于CentOS系统,还需安装EPEL源和Remi仓库,其余步骤类似。完成上述操作后,可通过浏览器访问`http://IP地址/phpinfo.php`测试安装结果。
|
1月前
|
应用服务中间件 Linux Shell
Linux 配置 Nginx 服务的详细步骤,绝对干货
Linux 配置 Nginx 服务的详细步骤,绝对干货
72 0
|
3月前
|
应用服务中间件 Linux nginx
在CentOS上使用源码包安装Nginx、以及手动启动Nginx的步骤过程
这篇文章介绍了在CentOS系统上使用Nginx源码包进行安装和配置的详细步骤,包括源码包的获取、解压、配置、编译、安装、启动验证以及注意事项。
361 0
在CentOS上使用源码包安装Nginx、以及手动启动Nginx的步骤过程
|
3月前
|
应用服务中间件 Linux PHP
Linux搭建tengine2.0<Nginx>+php7环境
本文介绍了在Linux系统上搭建Tengine 2.0(一个Nginx的增强版本)和PHP 7环境的详细步骤,包括创建安装目录、下载源码包及依赖库、编译安装Nginx、配置Nginx、安装PHP及其依赖、设置PHP-FPM、配置环境变量、安装Git和Composer,以及服务管理和日志查看等。
88 0
|
5月前
|
缓存 Ubuntu 应用服务中间件
Ubuntu 22.04 上安装、配置和使用 Nginx 可以分为几个简单的步骤
Ubuntu 22.04 上安装、配置和使用 Nginx 可以分为几个简单的步骤
|
5月前
|
tengine 安全 应用服务中间件
修改Nginx/Tengine版本名称伪装任意WEB SERVER
修改Nginx/Tengine版本名称伪装任意WEB SERVER
|
5月前
|
应用服务中间件 Linux 网络安全
LINUX安装nginx详细步骤
LINUX安装nginx详细步骤
|
5月前
|
tengine 应用服务中间件 nginx
既然Tengine比Nginx更强大,为什么Tengine没有取代Nginx呢?
既然Tengine比Nginx更强大,为什么Tengine没有取代Nginx呢?
219 0
|
6月前
|
开发工具
彻底卸载GitLab并重装
彻底卸载GitLab并重装
1008 0