黑马程序员技术交流社区
标题: 【郑州校区】bos项目笔记之chapter10_系统分析环境搭建(10) [打印本页]
作者: 谷粒姐姐 时间: 2018-4-19 11:02
标题: 【郑州校区】bos项目笔记之chapter10_系统分析环境搭建(10)
本帖最后由 谷粒姐姐 于 2018-4-19 11:04 编辑
8. 配置 PL/SQL Developer 远程连接 Linux Oracle sqlplus 如何连接远程 oracle
PLSQL Developer 如何连接远程 oracle
创建 bos 和 crm 账户
-- Create the user create user bos identified by bos; -- Grant/Revoke role privileges grant connect to bos; grant resource to bos;
-- Create the user create user crm identified by crm; -- Grant/Revoke role privileges grant connect to crm; grant resource to crm;
启动 tomcat 运行项目 自动建表
创建 admin 账户
在数据库导入 第九章 t_menu.sql 、t_user_role_permission.sql
Redis 安装 gcc
yum install -y gcc g++ gcc-c++ make
2、 解压 redis
tar zxvf redis-3.0.0.tar.gz cd redis-3.0.0
3、 执行 make 编译命令
make MALLOC=libc
4、 启动关闭 redis 启动 src/redis-server & (添加 &执行后台启动 )
关闭 src/redis-cli shutdown
5、 查看 redis 是否启动
ps -ef |grep redis 查看进程
客户端连接
ActiveMQ 解压 activeMQ
tar -zxvf apache-activemq-5.14.0-bin.tar.gz
2、 复制目录到/usr
mv apache-activemq-5.14.0 /usr
3、 创建链接
4、 启动服务
5、 查看是否启动
netstat -an | grep 61616 ps -ef|grep activemq
ElasticSearch 解压缩 elasticsearch
tar -zxvf elasticsearch-2.4.0.tar.gz
2、 移动目录
mv elasticsearch-2.4.0/ /usr/
3、 创建链接
ln -s elasticsearch-2.4.0 elasticsearch mv elasticsearch-2.4.0 elasticsearch
4、 启动服务 /usr/elasticsearch/bin/elasticsearch -d (-d 参数后台启动 )
错误 :无法用 root 账户启动
解决: -Des.insecure.allow.root=true
5、 访问页面端口 9200 服务程序调用端口 9300
默认只能 localhost 访问,如果外网访问,需要开启权限 config/elasticsearch.yml
6、 安装 es head 插件
进入 bin 目录 ./plugin install mobz/elasticsearch-head
重启 linux 服务器 shutdown -r now 重启 linux 后,关闭防火墙 service iptables stop 启动 elasticsearch
7、 安装 IK 分词器
解压缩 unzip elasticsearch-analysis-ik-2.x.zip
l 进入 ik 分词器 target/release 目录 拷贝文件到 %es%/plugins/analysis-ik
`cp -r ./ /usr/elasticsearch/plugins/analysis-ik/`
file:///C:\Users\user\AppData\Local\Temp\ksohtml\wpsDFD9.tmp.png
l 进入 target/release/config 目录将所有配置文件,复制 %es%/config 下
`cp -r ./ /usr/elasticsearch/config/
l 配置 elasticsearch.yml
加入 index.analysis.analyzer.ik.type: "ik"
重启 elasticsearch 服务器
作者: Port 时间: 2018-4-23 06:28
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) |
黑马程序员IT技术论坛 X3.2 |