ec2

ec2实例环境搭建的共同部分。

狂风中的少年 提交于 2019-12-16 19:16:55
一 创建用户? 1.1 supervisor 管理员 /* 需要有普通用户和管理员两个角色。 切换到root用户,系统的最高权限者。 sudo su groupadd supervisor echo "supervisor:密码自己设置。" | chpasswd 编辑用户文档 vimsudo 在管理员用户下增加。 supervisor ALL=(ALL) ALL */ 图片二 /* 1.2 ohs 普通用户 groupadd ohs useradd -s /bin/bash -g ohs 密码 echo "ohs:密码" | chpasswd 创建后可以 su ohs 切换用户 推出就用 exit osh@123 目的? 应用运行 就是普通用户 需要管理员权限 使用 supervisor */ 二 安装conda ? /* conda是什么? conda是一个包,依赖和环境管理工具,适用于多种语言,如: Python, R, Scala, Java, Javascript, C/ C++, FORTRAN 1 切换用户 su supervisor 需要使用管理员权限 su supervisor 2 更新系统命令? sudo yum update -y 3 安装 wget 和 svn。 sudo yum -y install wget subversion 4 安装conda

aws ec2 安装Elastic search 7.2.0 kibana 并配置 hanlp 分词插件

谁都会走 提交于 2019-12-12 10:16:47
文章大纲 Elastic search & kibana & 分词器 安装 版本控制 下载地址 Elastic search安装 kibana 安装 分词器配置 作者:season Elastic search & kibana & 分词器 安装 版本控制 ES版本:7.2.0 分词器版本: kibana 版本:7.2.0 下载地址 ES 下载地址: https://www.elastic.co/cn/downloads/past-releases/elasticsearch-7-2-0 kibana 下载地址: https://www.elastic.co/cn/downloads/past-releases/kibana-7-2-0 hanlp 分词器下载地址: https://github.com/KennFalcon/elasticsearch-analysis-hanlp Elastic search安装 0.添加es 用户,并新建目录 不能以root 方式运行elasticSearch groupadd elasticsearch useradd elasticsearch -g elasticsearch chown -R elasticsearch:elasticsearch /home/elasticsearch 1.修改 配置文件 elasticsearch

取消亚马逊AWS-EC2的自动扣费

六月ゝ 毕业季﹏ 提交于 2019-12-06 06:38:31
AWS提供的云服务一开始有免费试用,过了之后会自动扣费,又没有明确告知具体取消扣费途径,这里记录一下给有需要的朋友 1. 查看账单 通过邮件中的地址,或者直接访问console.aws.amazon.com,登录console控制端 之后在服务中查找bill,可以查看自己的账单详情 2. 在Bills页面查看具体账单详情  切换到具体月份展开账单详情,这里就是导致扣费的原因。这里是使用了Oregon的EC2的存储导致 3. 从Service中选择EC2 4. 从EC2中找到具体的实例,将对应的Actions置为Terminate 如此可以关闭收费,有需要的话可以进一步将绑定的信用卡取绑 来源: https://www.cnblogs.com/wantoo/p/11965854.html

AWS之EC2搭建WordPress博客

坚强是说给别人听的谎言 提交于 2019-12-06 02:31:42
AWS之搭建WordPress博客 注意:请确定您已经成功完成LAMP架构的搭建; 1、下载并解压WordPress安装包: ①使用wget命令在WordPress官网获取最新安装包: [ec2-user ~]$ wget https://wordpress.org/latest.tar.gz 此命令最在WordPress自动获取最新安装包,可以直接复制使用; ②解压并解档安装包 [ec2-user ~]$ tar -zxvf latest.tar.gz 2、为WordPress创建数据库用户以及数据库 ①启动mariadb数据库服务 [ec2-user ~]$ sudo systemctl start mariadb ②以root用户登陆mysql数据库 [ec2-user ~]$ mysql -u root -p password 此处password为最初设定的mysql密码 ③创建WordPress用户以及密码 create user ‘wordpress-user’@’localhost’ identified by ‘your_password’; 注意,数据库中的密码请勿使用 引号 以及 分号 否则系统会中断您的输入 ④创建wordpress数据库 create database ‘wordpress-db’; ⑤对wordpress用户授予完全访问权限 grant

如何使用密码登陆EC2实例

こ雲淡風輕ζ 提交于 2019-12-05 22:46:45
有时候需要在不同的办公环境登陆EC2实例,但是无法来回复制密钥到新的笔记本或者PC上,所以我们可以使用密码的方式登陆EC2-Linux机器 要启用密码身份验证,请创建一个密码,更新 /etc/ssh/sshd_config 文件,然后重新启动 SSH 服务。 注意:使用基于密码的登录而非密钥对身份验证具有安全隐患。因此,不建议使用基于密码的登录。 另外,最佳实践是最大限度地减少与您的实例关联的安全组规则的源 IP 地址以防止 SSH 攻击。 首先通过密钥登陆到实例上; [centos@jump ~]$ pwd /home/centos [centos@jump ~]$ sudo -i ##通过sudo切换到root [root@jump ~]# 设置密码 [root@jump ~]# passwd Changing password for user root. #设置root密码 New password: #输入密码第一次 Retype new password: #输入密码第二次 passwd: all authentication tokens updated successfully. 编辑 /etc/ssh/sshd_config # vim /etc/ssh/sshd_config ... PasswordAuthentication yes #允许使用密码登陆

EC2 安裝 Apache PHP MySQL

强颜欢笑 提交于 2019-12-04 02:00:26
使用EC2 像使用任何Linux主機一樣使用虛擬機。安裝軟件,我們用Yum安裝器來安裝Apache服務器,輸入下面的命令來安裝Apache: sudo yum install httpd 下一步,用以下命令安裝PHP: sudo yum install php 通過下面的命令安裝php-mysql擴展: sudo yum install php-mysql sudo yum install mysql-server 好了,安裝完成開始準備測試Apache。用下面的命令啟動Apache(你可以用「stop」或「restart」來停止或重啟Apache): sudo /etc/init.d/httpd start http://www.hkitmag.com/amazon-elastic-cloud-wordpress ===================================================================================== Programs can be easily installed with the yum command. So lets start by installing Apache with the command line: yum install httpd And then start

Download AWS S3 file from EC2 instance

匿名 (未验证) 提交于 2019-12-03 10:24:21
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I've a script to download file from AWS S3 and it works from a separate server outside of AWS. But when I put this script on an EC2 instance and tried it then it returns error "SignatureDoesNotMatch - The request signature we calculated does not match the signature you provided. Check your key and signing method." But it works on the other server. The ec2 is on the same region as the s3 host. I'm guessing it has something to do with the host. I tried these host/url but it returns the same error. Anyone able to download s3 files from ec2 with

AWS EC2 Key Pair setup

匿名 (未验证) 提交于 2019-12-03 10:24:21
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I'm trying to setup my AWS EC2 Instance with a Key Pair that I just created. The original instance was already setup without a key pair, so I'm trying to Launch a new Instance and set the Key Pair during that process. AWS docs instruct to "Specify the new key pair that you created" after I select the AMI, but I do not see anywhere that I can do this during the creation process. So, either I'm really clueless or something is not showing up correctly in the AWS creation steps (probably the former). Instance: t1.micro AMI: Amazon Linux AMI 2013

zipalign: error while loading shared libraries: libc++.so: cannot open shared object file: No such file or directory

匿名 (未验证) 提交于 2019-12-03 09:05:37
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I am trying to build android app. When I run the zip align tool to optimize the APK, I get this error message: zipalign: error while loading shared libraries: libc++.so: cannot open shared object file: No such file or directory I tried to install libc++ sudo aptitude install libc++ it says: Couldn't find package "libc+". Snapshot of my terminal 回答1: If your system is 64-bits, there should be a folder lib64 on the path of [android-path]/build-tools/[version]/ The files in lib64 are [ec2-user 25.0.2]$ ll lib64/ total 51628 -rwxrwxrwx 1 ec2

Elasticserch Master not discoverd exception - Version 2.3.0

匿名 (未验证) 提交于 2019-12-03 09:02:45
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: This is the first time I am working with elasticsearch. The following is my environment/configuration. I have 3 EC2 Ubuntu 14.04 instances. I have download and extracted elasticsearch-2.3.0.tar.gz. I have changed elasticsearch.yml file under elasticsearch/config in each of the instance. I have made the following changes in each of the elasticsearch.yml file. 3.1. EC2 Instance number 1 ( my client node) cluster.name: MyCluster node.name: Client node.master: false node.data: false path.data: /home/ubuntu/elasticsearch/data/elasticsearch/nodes