Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
cta
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Harbor Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
dCache
cta
Commits
8cb3a2af
Commit
8cb3a2af
authored
7 years ago
by
Michael Davis
Browse files
Options
Downloads
Patches
Plain Diff
[EOS-CTA] Adds SSI libs to shared object
parent
326ccc3f
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
frontend/start_server
+0
-3
0 additions, 3 deletions
frontend/start_server
frontend/xrd.ssi.conf
+0
-32
0 additions, 32 deletions
frontend/xrd.ssi.conf
xroot_plugins/CMakeLists.txt
+1
-1
1 addition, 1 deletion
xroot_plugins/CMakeLists.txt
with
1 addition
and
36 deletions
frontend/start_server
deleted
100755 → 0
+
0
−
3
View file @
326ccc3f
#!/bin/sh
xrootd
-c
xrd.ssi.conf
This diff is collapsed.
Click to expand it.
frontend/xrd.ssi.conf
deleted
100644 → 0
+
0
−
32
View file @
326ccc3f
# Tell XRootD to use only the SSI framework. If you wish to
# also use the filesystem features of XRootD then add the
# keyword default (i.e. xrootd.fslib libXrdSsi.so default).
xrootd
.
fslib
libXrdSsi
.
so
default
# Turn off async processing as this does not work with SSI
xrootd
.
async
off
# Declare the valid prefix for resource names. You can have
# as many of these directives as you wish, each specifying a
# different prefix.
#
# Allow arbitrary resource names. The question mark makes
# XRootD scan for ? and split the resource into a name and a
# CGI string.
all
.
export
/
nolock
r
/
w
# Specify the resource lookup function to be used.
#oss.statlib -2 libXrdSsi.so
# Specify the location of the shared library implementing
# you SSI service. See the SSI svclib directive for details.
ssi
.
svclib
/
home
/
mdavis
/
CTA
/
frontend
/
frontend_ssi
.
so
xrd
.
allow
host
localhost
xrd
.
port
10400
This diff is collapsed.
Click to expand it.
xroot_plugins/CMakeLists.txt
+
1
−
1
View file @
8cb3a2af
...
...
@@ -32,7 +32,7 @@ set_target_properties(XrdCtaOfs PROPERTIES INSTALL_RPATH ${PROTOBUF3_RPATH})
# XRootD SSI/CTA Frontend shared library
include_directories
(
../xroot_ssi_pb
)
add_library
(
XrdSsiCta MODULE XrdSsiCtaServiceProvider.cpp XrdSsiCtaRequestProc.cpp
)
target_link_libraries
(
XrdSsiCta ctaeosmessages
${
PROTOBUF3_LIBRARIES
}
)
target_link_libraries
(
XrdSsiCta ctaeosmessages
${
PROTOBUF3_LIBRARIES
}
XrdSsi-4 XrdSsiLib
)
set_target_properties
(
XrdSsiCta PROPERTIES INSTALL_RPATH
${
PROTOBUF3_RPATH
}
)
INSTALL
(
TARGETS XrdCtaOfs DESTINATION usr/
${
CMAKE_INSTALL_LIBDIR
}
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment