Skip to content

Commit

Permalink
change remote username for demo purpose
Browse files Browse the repository at this point in the history
  • Loading branch information
Ram Alagappan committed Oct 15, 2018
1 parent e2b8d44 commit d3869a3
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion remotecords.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
from threading import Timer

BLOCKSIZE = 4096
remote_user_name = 'ram'
remote_user_name = 'aishwarya'
ERRFS_HOME = os.path.dirname(os.path.realpath(__file__))
fuse_command_err = 'nohup ' + ERRFS_HOME + "/errfs -f -omodules=subdir,subdir=%s %s err %s %s %s > /dev/null 2>&1 &"
fuse_unmount_command = "fusermount -u %s > /dev/null"
Expand Down
2 changes: 1 addition & 1 deletion remotetrace.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
import subprocess
import argparse

remote_user_name = 'ram'
remote_user_name = 'aishwarya'

def invoke_remote_cmd(machine_ip, command):
cmd = 'ssh {0}@{1} \'{2}\''.format(remote_user_name, machine_ip, command)
Expand Down
6 changes: 3 additions & 3 deletions systems/remote_zk/zk_init.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@
from kazoo.client import KazooClient
from kazoo.client import KazooRetry

remote_user_name = 'ram'
cords_dir = '/home/ram/CORDS'
remote_user_name = 'aishwarya'
cords_dir = '/home/aishwarya/CORDS'
workload_home = cords_dir + '/systems/remote_zk/'

#ZooKeeper code home, log file names
zk_home = '/home/ram/zookeeper/'
zk_home = '/home/aishwarya/zookeeper/'
servers = ['0', '1', '2']

ips = {}
Expand Down
6 changes: 3 additions & 3 deletions systems/remote_zk/zk_workload_read.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@
from kazoo.client import KazooClient
from kazoo.client import KazooRetry

remote_user_name = 'ram'
cords_dir = '/home/ram/CORDS'
remote_user_name = 'aishwarya'
cords_dir = '/home/aishwarya/CORDS'
workload_home = cords_dir + '/systems/remote_zk/'

#ZooKeeper code home, log file names
zk_home = '/home/ram/zookeeper/'
zk_home = '/home/aishwarya/zookeeper/'
zoo_logfile_name = 'zookeeper.out'

def invoke_cmd(cmd):
Expand Down

0 comments on commit d3869a3

Please sign in to comment.